mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Don't override loop point if unset in MUSICDEF
This commit is contained in:
parent
e620758aa0
commit
a25dd93500
1 changed files with 2 additions and 1 deletions
|
|
@ -2283,7 +2283,8 @@ static boolean S_PlayMusic(boolean looping, UINT32 fadeinms)
|
|||
{
|
||||
if (strcasecmp(def->name, music_name) == 0)
|
||||
{
|
||||
S_SetMusicLoopPoint(def->loop_ms);
|
||||
if (def->loop_ms)
|
||||
S_SetMusicLoopPoint(def->loop_ms);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue