mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-01 06:00:45 +00:00
I_SongPlaying detect GME properly
This commit is contained in:
parent
4d91b44c63
commit
9d0d101d03
1 changed files with 6 additions and 1 deletions
|
@ -634,7 +634,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)
|
||||||
|
|
Loading…
Reference in a new issue