1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-06-25 14:43:01 +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) else if(sym == SDLK_F10)
quitmainloop = true; quitmainloop = true;
else if(sym == SDLK_F1) else if(sym == SDLK_F1)
gotoHelp(help); gotoHelp("@");
else if(sym == SDLK_ESCAPE || sym == ' ') { else if(sym == SDLK_ESCAPE || sym == ' ') {
popScreen(); popScreen();
timerstart = time(NULL); timerstart = time(NULL);