Fix NOMIXER

This commit is contained in:
James R 2022-01-12 00:33:35 -08:00
parent e9b2ccaedf
commit 8a7a20e6f2

View file

@ -517,7 +517,7 @@ static inline void I_SetChannels(void)
}
}
void I_SetSfxVolume(UINT8 volume)
void I_SetSfxVolume(int volume)
{
INT32 i;
@ -1466,7 +1466,7 @@ void I_ResumeSong(void)
#endif
}
void I_SetMusicVolume(UINT8 volume)
void I_SetMusicVolume(int volume)
{
(void)volume;
}
@ -1477,6 +1477,9 @@ boolean I_SetSongTrack(int track)
return false;
}
void I_UpdateSongLagThreshold(void){}
void I_UpdateSongLagConditions(void){}
/// ------------------------
/// MUSIC FADING
/// ------------------------