shithub: ft²

Download patch

ref: de3b30c9c9a8da949e5049c66c5b61543df7d396
parent: 16f3e939f57e35dd2d4ca02dfad694826cd6cec6
author: Olav Sørensen <olav.sorensen@live.no>
date: Tue Dec 24 12:10:05 EST 2024

Fix "Set Speed" command during .S3M import

--- a/src/modloaders/ft2_load_s3m.c
+++ b/src/modloaders/ft2_load_s3m.c
@@ -282,6 +282,7 @@
 						{
 							case 1: // A
 							{
+								tmpNote.efx = 0xF;
 								if (tmpNote.efxData == 0) // A00 does nothing in ST3
 								{
 									tmpNote.efx = tmpNote.efxData = 0;
@@ -288,7 +289,6 @@
 								}
 								else if (tmpNote.efxData > 0x1F)
 								{
-									tmpNote.efx = 0xF;
 									tmpNote.efxData = 0x1F;
 								}
 							}
--