mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-18 10:31:42 +00:00
Add S_MidiPlaying and S_MusicPlaying via I_MIDIPlaying and I_MusicPlaying
# Conflicts: # src/sdl12/mixer_sound.c
This commit is contained in:
parent
25880643d4
commit
297a8d537a
1 changed files with 10 additions and 0 deletions
|
@ -507,6 +507,16 @@ boolean I_MusicPlaying(void)
|
||||||
return (boolean)music;
|
return (boolean)music;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
boolean I_MIDIPlaying(void)
|
||||||
|
{
|
||||||
|
return midimode && music;
|
||||||
|
}
|
||||||
|
|
||||||
|
boolean I_MusicPlaying(void)
|
||||||
|
{
|
||||||
|
return (boolean)music;
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Digital Music
|
// Digital Music
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue