From f8339d9bfb2bcc102e8389224d1ade0ad8dadc20 Mon Sep 17 00:00:00 2001 From: Sebastian Krzyszkowiak Date: Thu, 2 Jul 2026 07:15:59 +0200 Subject: [PATCH] drivermode: Make sure to draw the first frame before pausing Otherwise the screen stays empty when the game is launched paused. --- application/drivermode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/drivermode.cpp b/application/drivermode.cpp index e9b07b42..80fd3b17 100644 --- a/application/drivermode.cpp +++ b/application/drivermode.cpp @@ -171,7 +171,7 @@ bool driver_mode::update() simulation::State.update_scripting_interface(); simulation::Environment.update(); - if (deltatime != 0.0) + if (deltatime != 0.0 || false == simulation::is_ready) { // jak pauza, to nie ma po co tego przeliczać simulation::Time.update(deltatime);