I_SetInternalMusicVolume other targets

This commit is contained in:
mazmazz 2018-08-19 09:39:11 -04:00
parent d5dfde240d
commit 7d03c19409
5 changed files with 31 additions and 0 deletions

View File

@ -184,3 +184,8 @@ UINT32 I_GetMusicPosition(void)
{
return 0;
}
void I_SetInternalMusicVolume(UINT8 volume)
{
(void)volume;
}

View File

@ -592,3 +592,8 @@ musictype_t I_MusicType(void)
{
return MU_NONE;
}
void I_SetInternalMusicVolume(UINT8 volume)
{
(void)volume;
}

View File

@ -146,6 +146,11 @@ boolean I_SetSongTrack(int track)
return false;
}
void I_SetInternalMusicVolume(UINT8 volume)
{
(void)volume;
}
UINT32 I_GetMusicLength(void)
{
return 0;

View File

@ -1664,6 +1664,12 @@ musictype_t I_MusicType(void)
return MU_NONE;
}
void I_SetInternalMusicVolume(UINT8 volume)
{
(void)volume;
}
void I_UnRegisterSong(INT32 handle)
{
#ifdef HAVE_MIXER
@ -2021,6 +2027,11 @@ boolean I_SetSongTrack(int track)
return false;
}
void I_SetInternalMusicVolume(UINT8 volume)
{
(void)volume;
}
#ifdef MIXER_POS
static void SDLCALL I_FinishMusic(void)
{

View File

@ -873,6 +873,11 @@ boolean I_SetSongTrack(INT32 track)
return false;
}
void I_SetInternalMusicVolume(UINT8 volume)
{
(void)volume;
}
//
// Fuck MIDI. ... Okay fine, you can have your silly D_-only mode.
//