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();