Add back to game button on escape menu

This commit is contained in:
Kelsi 2026-02-05 16:21:17 -08:00
parent 2ca1e5a87a
commit f2eafefd3f

View file

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