mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-20 08:20:52 +00:00
Remove I_MIDIPlaying
This commit is contained in:
parent
58b204809f
commit
d7720a8556
4 changed files with 0 additions and 19 deletions
|
@ -147,12 +147,6 @@ void I_PauseSong(INT32 handle);
|
|||
*/
|
||||
void I_ResumeSong(INT32 handle);
|
||||
|
||||
/** \brief Get MIDI music status
|
||||
|
||||
\return boolean
|
||||
*/
|
||||
boolean I_MIDIPlaying(void);
|
||||
|
||||
/** \brief Get general music status
|
||||
|
||||
\return boolean
|
||||
|
|
|
@ -1599,11 +1599,6 @@ void S_ResumeAudio(void)
|
|||
I_ResumeCD();
|
||||
}
|
||||
|
||||
boolean S_MIDIPlaying(void)
|
||||
{
|
||||
return I_MIDIPlaying();
|
||||
}
|
||||
|
||||
boolean S_MusicPlaying(void)
|
||||
{
|
||||
return I_MusicPlaying();
|
||||
|
|
|
@ -155,9 +155,6 @@ void S_StopMusic(void);
|
|||
void S_PauseAudio(void);
|
||||
void S_ResumeAudio(void);
|
||||
|
||||
// Gets MIDI music status
|
||||
boolean S_MIDIPlaying(void);
|
||||
|
||||
// Gets general music status
|
||||
boolean S_MusicPlaying(void);
|
||||
|
||||
|
|
|
@ -537,11 +537,6 @@ void I_ResumeSong(INT32 handle)
|
|||
songpaused = false;
|
||||
}
|
||||
|
||||
boolean I_MIDIPlaying(void)
|
||||
{
|
||||
return midimode && music;
|
||||
}
|
||||
|
||||
boolean I_MusicPlaying(void)
|
||||
{
|
||||
return (boolean)music;
|
||||
|
|
Loading…
Reference in a new issue