From bf29365e0469ff3b54047865621a681e8cc17158 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Tue, 12 Sep 2023 17:09:19 +0200 Subject: [PATCH] Fix typo Should be tick as its possible to run more frames per simulation tick. --- r5dev/engine/client/cl_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/engine/client/cl_main.cpp b/r5dev/engine/client/cl_main.cpp index 207ef612..b4e23f5a 100644 --- a/r5dev/engine/client/cl_main.cpp +++ b/r5dev/engine/client/cl_main.cpp @@ -17,7 +17,7 @@ static float s_lastMovementCall = 0.0; static float s_LastFrameTime = 0.0; // The game supports sending multiple movement frames in a single simulation -// frame, therefore, we need to track when the last call was, and make sure +// tick, therefore, we need to track when the last call was, and make sure // we only call the latency marker once per frame. static int s_LastMovementReflexFrame = -1;