mirror of
https://github.com/GTAmodding/re3.git
synced 2025-02-27 20:13:54 +00:00
raindrop smearing fixed at high fps
This commit is contained in:
parent
4f461bd7be
commit
71853e03e7
1 changed files with 1 additions and 1 deletions
|
@ -404,7 +404,7 @@ ScreenDroplets::ProcessCameraMovement(void)
|
|||
CVector camPos = camMat->pos;
|
||||
CVector camUp = camMat->at;
|
||||
ms_camMoveDelta = camPos - ms_prevCamPos;
|
||||
ms_camMoveDist = ms_camMoveDelta.Magnitude();
|
||||
ms_camMoveDist = ms_camMoveDelta.Magnitude() / CTimer::GetTimeStepFix();
|
||||
|
||||
ms_prevCamUp = camUp;
|
||||
ms_prevCamPos = camPos;
|
||||
|
|
Loading…
Add table
Reference in a new issue