mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 20:41:46 +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)
|
if (strcasecmp(def->name, music_name) == 0)
|
||||||
{
|
{
|
||||||
S_SetMusicLoopPoint(def->loop_ms);
|
if (def->loop_ms)
|
||||||
|
S_SetMusicLoopPoint(def->loop_ms);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue