mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-04 08:52:00 +00:00
I_SetInternalMusicVolume other targets
This commit is contained in:
parent
d5dfde240d
commit
7d03c19409
5 changed files with 31 additions and 0 deletions
|
@ -184,3 +184,8 @@ UINT32 I_GetMusicPosition(void)
|
|||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
void I_SetInternalMusicVolume(UINT8 volume)
|
||||
{
|
||||
(void)volume;
|
||||
}
|
||||
|
|
|
@ -592,3 +592,8 @@ musictype_t I_MusicType(void)
|
|||
{
|
||||
return MU_NONE;
|
||||
}
|
||||
|
||||
void I_SetInternalMusicVolume(UINT8 volume)
|
||||
{
|
||||
(void)volume;
|
||||
}
|
||||
|
|
|
@ -146,6 +146,11 @@ boolean I_SetSongTrack(int track)
|
|||
return false;
|
||||
}
|
||||
|
||||
void I_SetInternalMusicVolume(UINT8 volume)
|
||||
{
|
||||
(void)volume;
|
||||
}
|
||||
|
||||
UINT32 I_GetMusicLength(void)
|
||||
{
|
||||
return 0;
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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.
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue