Fixed minor stepping issue

This commit is contained in:
Antoine Pilote
2023-08-09 09:59:15 -04:00
parent 03c18842f8
commit f24231d0e8
2 changed files with 3 additions and 3 deletions

View File

@@ -63,7 +63,7 @@ namespace Nuake
// Fixed update
while (s_FixedUpdateDifference >= s_FixedUpdateRate)
{
s_CurrentWindow->FixedUpdate(s_FixedUpdateDifference);
s_CurrentWindow->FixedUpdate(s_FixedUpdateRate);
s_FixedUpdateDifference -= s_FixedUpdateRate;
}