Remove I_MIDIPlaying from other targets

This commit is contained in:
mazmazz 2018-08-18 17:46:06 -04:00
parent d7720a8556
commit 57c8cf25af
5 changed files with 0 additions and 26 deletions

View File

@ -74,11 +74,6 @@ void I_ResumeSong(INT32 handle)
(void)handle;
}
boolean I_MIDIPlaying(void)
{
return false;
}
boolean I_MusicPlaying(void)
{
return false;

View File

@ -567,11 +567,6 @@ UINT32 I_GetMusicPosition(void)
return 0;
}
boolean I_MIDIPlaying(void)
{
return (boolean)currsong && music_started;
}
boolean I_MusicPlaying(void)
{
return (boolean)currsong && music_started;

View File

@ -162,11 +162,6 @@ UINT32 I_GetMusicPosition(void)
return 0;
}
boolean I_MIDIPlaying(void)
{
return false;
}
boolean I_MusicPlaying(void)
{
return false;

View File

@ -1649,12 +1649,6 @@ void I_StopSong(INT32 handle)
#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)
{
return musicStarted;

View File

@ -468,11 +468,6 @@ void I_ResumeSong(INT32 handle)
FMR_MUSIC(FMOD_Channel_SetPaused(music_channel, false));
}
boolean I_MIDIPlaying(void)
{
return midimode && music_stream;
}
boolean I_MusicPlaying(void)
{
return (boolean)music_stream;