Allow demo speeds up to 256

This commit is contained in:
def 2019-04-02 23:16:01 +02:00
parent 4f168ba936
commit 989726db00

View file

@ -820,7 +820,7 @@ int CDemoPlayer::SetPos(float Percent)
void CDemoPlayer::SetSpeed(float Speed)
{
m_Info.m_Info.m_Speed = clamp(Speed, 0.f, 64.f);
m_Info.m_Info.m_Speed = clamp(Speed, 0.f, 256.f);
}
void CDemoPlayer::SetSpeedIndex(int Offset)