mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-03 15:32:45 +00:00
I_SongPlaying detect GME properly
(cherry picked from commit e88d1477616ca66472ecb50d371e37dc79c77c0f)
This commit is contained in:
parent
4fd0638220
commit
6a6a7a60c7
1 changed files with 6 additions and 1 deletions
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue