did it got fixed?

This commit is contained in:
minjaesong
2026-05-06 10:38:37 +09:00
parent d058f11329
commit 75ddfcde0f
10 changed files with 162 additions and 74 deletions

View File

@@ -767,9 +767,10 @@ def assemble_taud(mod: dict) -> bytes:
# ProTracker is Amiga-period-based by definition, so we set the f bit so
# the engine applies coarse pitch slides in period space (recovers PT's
# characteristic non-linear pitch character).
# bit 2 (m) set: FT2 fadeout-zero policy — PT has no fadeout, so the stored
# zero on every instrument means "cut on key-off" (unified with S3M imports).
flags_byte = 0x02 | 0x04
# bit 2 reserved (was 'm' fadeout-zero policy; removed). PT has no instrument-level
# fadeout, so every Taud instrument carries fadeout=0 ("no fade") — notes retire
# on sample-end or pattern note-cut instead, which matches PT semantics.
flags_byte = 0x02
song_table = encode_song_entry(
song_offset=song_offset,
num_voices=n_channels,