mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-11 03:19:46 +01:00
Fix wrong function being used for musicclass::play() check
Whoops.
This commit is contained in:
parent
74740c5a21
commit
f06701ff90
1 changed files with 1 additions and 1 deletions
|
@ -188,7 +188,7 @@ void musicclass::play(int t, const double position_sec /*= 0.0*/, const int fade
|
||||||
safeToProcessMusic = true;
|
safeToProcessMusic = true;
|
||||||
musicVolume = MIX_MAX_VOLUME;
|
musicVolume = MIX_MAX_VOLUME;
|
||||||
|
|
||||||
if (currentsong == t && Mix_PlayingMusic() != MIX_FADING_OUT)
|
if (currentsong == t && Mix_FadingMusic() != MIX_FADING_OUT)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue