mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix incorrect ACS MusicRemap tune check
This commit is contained in:
parent
f7afea7abb
commit
fa8c2aac86
1 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue