From 5fc74233874e48878c3a5b2582d0b20ed0555c7d Mon Sep 17 00:00:00 2001 From: Jorijn van der Graaf Date: Mon, 9 Mar 2026 22:15:36 +0100 Subject: [PATCH] time fix --- implementations/Crafter.Graphics-Window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/implementations/Crafter.Graphics-Window.cpp b/implementations/Crafter.Graphics-Window.cpp index f6dec5f..74fb1b3 100644 --- a/implementations/Crafter.Graphics-Window.cpp +++ b/implementations/Crafter.Graphics-Window.cpp @@ -599,7 +599,7 @@ void Window::Update() { #endif mouseDelta = {currentMousePos.x-lastMousePos.x, currentMousePos.y-lastMousePos.y}; - currentFrameTime = {start, start-lastFrameBegin}; + currentFrameTime = {startTime, startTime-lastFrameBegin}; #ifdef CRAFTER_TIMING auto renderStart = std::chrono::high_resolution_clock::now(); renderTimings.clear();