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
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue