From f185c9e28e01f15523cb95e033eb3d115ab8044e Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 6 Nov 2017 22:11:32 +0100 Subject: [PATCH] fixed the Help in main menu showing incorrect screens --- menus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menus.cpp b/menus.cpp index 626527e8..16467128 100644 --- a/menus.cpp +++ b/menus.cpp @@ -253,7 +253,7 @@ void showMainMenu() { keyhandler = [] (int sym, int uni) { dialog::handleNavigation(sym, uni); - if(sym == SDLK_F1 || sym == 'h') gotoHelp(help); + if(sym == SDLK_F1 || sym == 'h') gotoHelp("@"); else if(sym == 'c' && cheater) pushScreen(showCheatMenu); else if(sym == 'b') pushScreen(showBasicConfig); else if(sym == 'g') pushScreen(showGraphConfig);