mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-17 04:02:50 +00:00
Remove I_MIDIPlaying
This commit is contained in:
parent
ec2b368c6d
commit
22b2ef44b9
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…
Add table
Reference in a new issue