Add back to game button on escape menu

This commit is contained in:
Kelsi 2026-02-05 16:21:17 -08:00
parent ce1db3a331
commit dd28b647c4

View file

@ -1772,10 +1772,13 @@ void GameScreen::renderEscapeMenu() {
settingsInit = false; settingsInit = false;
} }
if (showEscapeSettingsNotice) { ImGui::Spacing();
ImGui::Spacing(); ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(10.0f, 10.0f));
ImGui::TextColored(ImVec4(1.0f, 0.8f, 0.2f, 1.0f), "Settings not implemented yet."); if (ImGui::Button("Back to Game", ImVec2(-1, 0))) {
showEscapeMenu = false;
showEscapeSettingsNotice = false;
} }
ImGui::PopStyleVar();
} }
ImGui::End(); ImGui::End();
} }