Fix PopStyleVar mismatch in settings window

This commit is contained in:
Kelsi 2026-02-15 04:20:32 -08:00
parent 2f49b9337c
commit ca6852c51d

View file

@ -5510,7 +5510,7 @@ void GameScreen::renderSettingsWindow() {
if (ImGui::Button("Back to Game", ImVec2(-1, 0))) { if (ImGui::Button("Back to Game", ImVec2(-1, 0))) {
showSettingsWindow = false; showSettingsWindow = false;
} }
ImGui::PopStyleVar(2); ImGui::PopStyleVar();
} }
ImGui::End(); ImGui::End();
} }