From 3f18b3ae551cc90f56e3c127656f1e490aa892e2 Mon Sep 17 00:00:00 2001 From: Jorijn van der Graaf Date: Mon, 9 Mar 2026 22:12:40 +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 44924e2..f6dec5f 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}; #ifdef CRAFTER_TIMING auto renderStart = std::chrono::high_resolution_clock::now(); renderTimings.clear();