Skip to content
Snippets Groups Projects
Commit e88d1477 authored by Marco Z's avatar Marco Z
Browse files

I_SongPlaying detect GME properly

parent eae5d333
No related branches found
No related tags found
No related merge requests found
......@@ -524,7 +524,12 @@ musictype_t I_SongType(void)
boolean I_SongPlaying(void)
{
return (boolean)music;
return (
#ifdef HAVE_LIBGME
(I_SongType() == MU_GME && gme) ||
#endif
(boolean)music
);
}
boolean I_SongPaused(void)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment