1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-07 09:13:02 +00:00

start menu options no longer reset the graphical options -- there is a separate entry for that

This commit is contained in:
Zeno Rogue
2019-01-02 16:20:14 +01:00
parent df0578a1fe
commit 06cfd5e2d6
2 changed files with 26 additions and 11 deletions

View File

@@ -697,7 +697,13 @@ void showStartMenu() {
dialog::addBreak(100);
dialog::addBigItem(XLAT1("use current/saved settings"), SDLK_ESCAPE);
}
if(have_current_graph_settings()) {
dialog::addBreak(100);
dialog::addBigItem(XLAT1("reset the graphics settings"), 'r');
dialog::add_action([] () { reset_graph_settings(); });
}
dialog::addBreak(100);
dialog::addBigItem(XLAT("main menu"), 'm');
dialog::addInfo(XLAT("more options"));