disable prediction error smoothing

also z_sidespeed
This commit is contained in:
explorer
2025-01-21 00:30:25 +03:00
parent 0b54788d15
commit d5a3de9a21
3 changed files with 8 additions and 8 deletions

View File

@ -114,11 +114,11 @@ void __thiscall Redirected_Copy_Command(void* Unknown_Parameter, Command_Structu
if (__builtin_signbitf(Strafe_Angle) == 0)
{
Command->Move[1] = -400.f;
Command->Move[1] = -450.f;
}
else
{
Command->Move[1] = 400.f;
Command->Move[1] = 450.f;
}
Move_Angles[1] -= Strafe_Angle;
@ -127,11 +127,11 @@ void __thiscall Redirected_Copy_Command(void* Unknown_Parameter, Command_Structu
{
if (__builtin_signbitf(Difference) == 0)
{
Command->Move[1] = -400.f;
Command->Move[1] = -450.f;
}
else
{
Command->Move[1] = 400.f;
Command->Move[1] = 450.f;
}
}
}