Forgot to reference these three

This commit is contained in:
StarManiaKG 2024-03-21 22:47:02 -04:00
parent 4ff91f8e90
commit 201e5e79b7

View file

@ -1797,6 +1797,22 @@ void S_SpeedMusic(float speed) // StarManiaKG: was originally boolean, no longer
return;
}
float S_GetSpeedMusic(void)
{
return I_GetSongSpeed();
}
void S_PitchMusic(float pitch)
{
I_SetSongPitch(pitch);
return;
}
float S_GetPitchMusic(void)
{
return I_GetSongPitch();
}
/// ------------------------
/// Music Seeking
/// ------------------------