mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +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);
|
void I_ResumeSong(INT32 handle);
|
||||||
|
|
||||||
/** \brief Get MIDI music status
|
|
||||||
|
|
||||||
\return boolean
|
|
||||||
*/
|
|
||||||
boolean I_MIDIPlaying(void);
|
|
||||||
|
|
||||||
/** \brief Get general music status
|
/** \brief Get general music status
|
||||||
|
|
||||||
\return boolean
|
\return boolean
|
||||||
|
|
|
||||||
|
|
@ -1599,11 +1599,6 @@ void S_ResumeAudio(void)
|
||||||
I_ResumeCD();
|
I_ResumeCD();
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean S_MIDIPlaying(void)
|
|
||||||
{
|
|
||||||
return I_MIDIPlaying();
|
|
||||||
}
|
|
||||||
|
|
||||||
boolean S_MusicPlaying(void)
|
boolean S_MusicPlaying(void)
|
||||||
{
|
{
|
||||||
return I_MusicPlaying();
|
return I_MusicPlaying();
|
||||||
|
|
|
||||||
|
|
@ -155,9 +155,6 @@ void S_StopMusic(void);
|
||||||
void S_PauseAudio(void);
|
void S_PauseAudio(void);
|
||||||
void S_ResumeAudio(void);
|
void S_ResumeAudio(void);
|
||||||
|
|
||||||
// Gets MIDI music status
|
|
||||||
boolean S_MIDIPlaying(void);
|
|
||||||
|
|
||||||
// Gets general music status
|
// Gets general music status
|
||||||
boolean S_MusicPlaying(void);
|
boolean S_MusicPlaying(void);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -537,11 +537,6 @@ void I_ResumeSong(INT32 handle)
|
||||||
songpaused = false;
|
songpaused = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean I_MIDIPlaying(void)
|
|
||||||
{
|
|
||||||
return midimode && music;
|
|
||||||
}
|
|
||||||
|
|
||||||
boolean I_MusicPlaying(void)
|
boolean I_MusicPlaying(void)
|
||||||
{
|
{
|
||||||
return (boolean)music;
|
return (boolean)music;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue