mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Fix pausing MIDI music on Windows, regressed in r5817.
git-svn-id: https://svn.eduke32.com/eduke32@5861 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
559a34e875
commit
6f194b7f7c
1 changed files with 1 additions and 1 deletions
|
@ -593,7 +593,7 @@ void MIDI_ContinueSong(void)
|
|||
|
||||
void MIDI_PauseSong(void)
|
||||
{
|
||||
if (_MIDI_SongLoaded)
|
||||
if (!_MIDI_SongLoaded)
|
||||
return;
|
||||
|
||||
_MIDI_SongActive = FALSE;
|
||||
|
|
Loading…
Reference in a new issue