diff --git a/src/acs/call-funcs.cpp b/src/acs/call-funcs.cpp index df1f2043e..02d5a295b 100644 --- a/src/acs/call-funcs.cpp +++ b/src/acs/call-funcs.cpp @@ -2420,12 +2420,12 @@ bool CallFunc_MusicRemap(ACSVM::Thread *thread, const ACSVM::Word *argV, ACSVM:: { return false; } - + tuneStr = map->getString(argV[0]); tune = tuneStr->str; - + // Do not allow ACS to remap Stereo Mode tunes. - if (strncmp("stere", tune, 5)) + if (fasticmp("stere", tune)) { return false; }