From 10f42aa2b97583b5c242f674adbaaaff1e6ec1fa Mon Sep 17 00:00:00 2001 From: ZLau92 Date: Sun, 8 Aug 2021 21:57:41 -0500 Subject: [PATCH] revert physics changes. They ain't right. --- src/peds/Ped.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/peds/Ped.cpp b/src/peds/Ped.cpp index 173f2c3a..3ccae5d0 100644 --- a/src/peds/Ped.cpp +++ b/src/peds/Ped.cpp @@ -1540,12 +1540,6 @@ CPed::UpdatePosition(void) velocityChange = velocityChange * (changeMult / speedChange); } } - -#ifdef FIX_BUGS - //helps with ped<->vehicle collisions and sprinting on steep grades at high framerates - velocityChange *= CTimer::GetTimeStepFix(); -#endif - m_vecMoveSpeed.x += velocityChange.x; m_vecMoveSpeed.y += velocityChange.y; }