From ca8d466b00b6b0fc0799b23eeb0a289c3de39a36 Mon Sep 17 00:00:00 2001 From: cinnaboot Date: Mon, 9 Feb 2026 08:55:53 -0500 Subject: [PATCH] start the graphical simulation in paused mode --- src/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 576edd8..bd9ed7a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -37,6 +37,7 @@ void run_gui_simulation(SimulationState* sim) { RenderState render_state; setup_camera(&render_state); + // FIXME: too verbose, and/or should be an init function UIState ui_state; ui_state.body_list_scroll = 0; ui_state.body_list_active = -1; @@ -85,7 +86,7 @@ void run_gui_simulation(SimulationState* sim) { ui_state.body_list_active = root_body_index >= 0 ? root_body_index : -1; // Sync with selected body gui_init(); - bool paused = false; + bool paused = true; double speed_multiplier = 32.0; double min_multiplier = 1.0; int physics_steps_per_frame = 1;