mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-23 02:40:11 +00:00
Forgot to reference these three
This commit is contained in:
parent
4ff91f8e90
commit
201e5e79b7
1 changed files with 16 additions and 0 deletions
|
@ -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
|
||||
/// ------------------------
|
||||
|
|
Loading…
Reference in a new issue