1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-19 23:30:25 +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(); clearMessages();
welcomeMessage(); welcomeMessage();
} }
#if CAP_STARTANIM else if(sym == SDLK_F5) {
else if(sym == SDLK_F5) startanims::pick(); #if CAP_STARTANIM
#endif startanims::pick();
#endif
daily_mode = 0;
}
}; };
} }