1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-19 15:20:27 +00:00

F5 in start menu changes the daily_mode

This commit is contained in:
Zeno Rogue 2019-09-28 16:15:58 +02:00
parent 7b3b2e0573
commit 00eb83901d

View File

@ -868,9 +868,12 @@ EX void showStartMenu() {
clearMessages();
welcomeMessage();
}
#if CAP_STARTANIM
else if(sym == SDLK_F5) startanims::pick();
#endif
else if(sym == SDLK_F5) {
#if CAP_STARTANIM
startanims::pick();
#endif
daily_mode = 0;
}
};
}