From 77f8ebd7273021883329b4881e36324e1edb9c20 Mon Sep 17 00:00:00 2001 From: Kelsi Date: Sun, 15 Feb 2026 04:20:32 -0800 Subject: [PATCH] Fix PopStyleVar mismatch in settings window --- src/ui/game_screen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/game_screen.cpp b/src/ui/game_screen.cpp index d65d5862..35b122ec 100644 --- a/src/ui/game_screen.cpp +++ b/src/ui/game_screen.cpp @@ -5510,7 +5510,7 @@ void GameScreen::renderSettingsWindow() { if (ImGui::Button("Back to Game", ImVec2(-1, 0))) { showSettingsWindow = false; } - ImGui::PopStyleVar(2); + ImGui::PopStyleVar(); } ImGui::End(); }