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

I_SongPlaying detect GME properly

(cherry picked from commit e88d1477)
parent d94f7e3c
Branches
Tags
2 merge requests!488Merge in next and don't billboard papersprites in GL,!278Music Code Cleanup
...@@ -524,7 +524,12 @@ musictype_t I_SongType(void) ...@@ -524,7 +524,12 @@ musictype_t I_SongType(void)
boolean I_SongPlaying(void) boolean I_SongPlaying(void)
{ {
return (boolean)music; return (
#ifdef HAVE_LIBGME
(I_SongType() == MU_GME && gme) ||
#endif
(boolean)music
);
} }
boolean I_SongPaused(void) boolean I_SongPaused(void)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment