1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-14 13:57:38 +00:00

text improvements, PL/CZ translation update

This commit is contained in:
Zeno Rogue
2018-12-14 18:21:52 +01:00
parent f22ec08f86
commit 5d01ac0732
13 changed files with 346 additions and 76 deletions

View File

@@ -485,17 +485,21 @@ struct shmup_configurer {
}
else if(doexiton(sym, uni)) {
popScreen();
if(shmup::on != shmupcfg) {
stop_game();
switch_game_mode(rg::shmup);
resetScores();
}
if(playercfg != players) {
stop_game();
players = playercfg;
resetScores();
}
start_game();
auto sc = shmupcfg;
auto pc = playercfg;
if(shmup::on != sc || pc != players) dialog::do_if_confirmed([sc, pc] {
if(shmup::on != sc) {
stop_game();
switch_game_mode(rg::shmup);
resetScores();
}
if(pc != players) {
stop_game();
players = pc;
resetScores();
}
start_game();
});
}
#endif
}