mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-23 02:40:11 +00:00
that was so dumb
This commit is contained in:
parent
aa80316dc3
commit
24be9cb43f
1 changed files with 4 additions and 4 deletions
|
@ -89,24 +89,24 @@ boolean I_SongPaused(void)
|
|||
// MUSIC EFFECTS
|
||||
/// ------------------------
|
||||
|
||||
void S_SpeedMusic(float speed) // StarManiaKG: was originally boolean, no longer needs to be //
|
||||
void I_SetSongSpeed(float speed) // StarManiaKG: was originally boolean, no longer needs to be //
|
||||
{
|
||||
(void)speed;
|
||||
return;
|
||||
}
|
||||
|
||||
float S_GetSpeedMusic(void)
|
||||
float I_GetSongSpeed(void)
|
||||
{
|
||||
return 0.0f;
|
||||
}
|
||||
|
||||
void S_PitchMusic(float pitch)
|
||||
void I_SetSongPitch(float pitch)
|
||||
{
|
||||
(void)pitch;
|
||||
return;
|
||||
}
|
||||
|
||||
float S_GetPitchMusic(void)
|
||||
float I_GetSongPitch(void)
|
||||
{
|
||||
return 0.0f;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue