Fix incorrect ACS MusicRemap tune check

This commit is contained in:
Eidolon 2025-10-20 16:57:02 -05:00
parent f7afea7abb
commit fa8c2aac86

View file

@ -2425,7 +2425,7 @@ bool CallFunc_MusicRemap(ACSVM::Thread *thread, const ACSVM::Word *argV, ACSVM::
tune = tuneStr->str; tune = tuneStr->str;
// Do not allow ACS to remap Stereo Mode tunes. // Do not allow ACS to remap Stereo Mode tunes.
if (strncmp("stere", tune, 5)) if (fasticmp("stere", tune))
{ {
return false; return false;
} }