1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-23 21:07:17 +00:00

pressing F1 while in the start menu no longer displays empty help

This commit is contained in:
Zeno Rogue 2018-01-06 23:41:28 +01:00
parent 2b6b8c1d39
commit 9412928914

View File

@ -679,7 +679,7 @@ void showStartMenu() {
else if(sym == SDLK_F10)
quitmainloop = true;
else if(sym == SDLK_F1)
gotoHelp(help);
gotoHelp("@");
else if(sym == SDLK_ESCAPE || sym == ' ') {
popScreen();
timerstart = time(NULL);