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:
hendricks266 2016-09-16 21:55:09 +00:00
parent 559a34e875
commit 6f194b7f7c

View file

@ -593,7 +593,7 @@ void MIDI_ContinueSong(void)
void MIDI_PauseSong(void)
{
if (_MIDI_SongLoaded)
if (!_MIDI_SongLoaded)
return;
_MIDI_SongActive = FALSE;