mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-28 04:51:42 +00:00
Remove I_MIDIPlaying from other targets
This commit is contained in:
parent
22b2ef44b9
commit
4659bc241a
5 changed files with 0 additions and 26 deletions
|
|
@ -74,11 +74,6 @@ void I_ResumeSong(INT32 handle)
|
||||||
(void)handle;
|
(void)handle;
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean I_MIDIPlaying(void)
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
boolean I_MusicPlaying(void)
|
boolean I_MusicPlaying(void)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
|
|
@ -567,11 +567,6 @@ UINT32 I_GetMusicPosition(void)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean I_MIDIPlaying(void)
|
|
||||||
{
|
|
||||||
return (boolean)currsong && music_started;
|
|
||||||
}
|
|
||||||
|
|
||||||
boolean I_MusicPlaying(void)
|
boolean I_MusicPlaying(void)
|
||||||
{
|
{
|
||||||
return (boolean)currsong && music_started;
|
return (boolean)currsong && music_started;
|
||||||
|
|
|
||||||
|
|
@ -162,11 +162,6 @@ UINT32 I_GetMusicPosition(void)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean I_MIDIPlaying(void)
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
boolean I_MusicPlaying(void)
|
boolean I_MusicPlaying(void)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
|
|
@ -1649,12 +1649,6 @@ void I_StopSong(INT32 handle)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean I_MIDIPlaying(void)
|
|
||||||
{
|
|
||||||
// todo: no way to tell specifically if MIDI is playing, implement midimode
|
|
||||||
return !nomidimusic && nodigimusic && musicStarted;
|
|
||||||
}
|
|
||||||
|
|
||||||
boolean I_MusicPlaying(void)
|
boolean I_MusicPlaying(void)
|
||||||
{
|
{
|
||||||
return musicStarted;
|
return musicStarted;
|
||||||
|
|
|
||||||
|
|
@ -468,11 +468,6 @@ void I_ResumeSong(INT32 handle)
|
||||||
FMR_MUSIC(FMOD_Channel_SetPaused(music_channel, false));
|
FMR_MUSIC(FMOD_Channel_SetPaused(music_channel, false));
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean I_MIDIPlaying(void)
|
|
||||||
{
|
|
||||||
return midimode && music_stream;
|
|
||||||
}
|
|
||||||
|
|
||||||
boolean I_MusicPlaying(void)
|
boolean I_MusicPlaying(void)
|
||||||
{
|
{
|
||||||
return (boolean)music_stream;
|
return (boolean)music_stream;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue