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

rogueviz::presentation:: menu option is now called RogueViz demos, not presentations

This commit is contained in:
Zeno Rogue 2021-04-07 18:31:51 +02:00
parent 6926b20bc6
commit c44ec8b51d

View File

@ -250,9 +250,8 @@ int phooks =
+ addHook(dialog::hooks_display_dialog, 100, [] () { + addHook(dialog::hooks_display_dialog, 100, [] () {
if(current_screen_cfunction() == showStartMenu) { if(current_screen_cfunction() == showStartMenu) {
dialog::addBreak(100); dialog::addBreak(100);
dialog::addBigItem(XLAT("presentations"), 'p'); dialog::addBigItem(XLAT("RogueViz demos"), 'p');
dialog::add_action([] () { pushScreen(choose_presentation); }); dialog::add_action([] () { pushScreen(choose_presentation); });
dialog::addInfo(XLAT("presentation"));
} }
}); });