Skip to content

Commit

Permalink
[Fix] IT: SAx import was bound to "compatible" tracker, not "made wit…
Browse files Browse the repository at this point in the history
…h" tracker ID.

git-svn-id: https://source.openmpt.org/svn/openmpt/trunk/OpenMPT@21774 56274372-70c3-4bfc-bfc3-4c3a0b034d27
  • Loading branch information
sagamusix committed Sep 30, 2024
1 parent 1c43918 commit 6241e43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion soundlib/Load_it.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1132,7 +1132,7 @@ bool CSoundFile::ReadIT(FileReader &file, ModLoadingFlags loadFlags)
S3MConvert(m, command, param, true);

// IT 1.xx does not support high offset command
if(m.command == CMD_S3MCMDEX && (m.param & 0xF0) == 0xA0 && fileHeader.cmwt < 0x0200)
if(m.command == CMD_S3MCMDEX && (m.param & 0xF0) == 0xA0 && fileHeader.cwtv < 0x0200)
m.command = CMD_DUMMY;
// Fix handling of commands V81-VFF in ITs made with old Schism Tracker versions
// (fixed in https://github.com/schismtracker/schismtracker/commit/ab5517d4730d4c717f7ebffb401445679bd30888 - one of the last versions to identify as v0.50)
Expand Down

0 comments on commit 6241e43

Please sign in to comment.