diff options
Diffstat (limited to 'src/screen/world.c')
| -rw-r--r-- | src/screen/world.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/screen/world.c b/src/screen/world.c index c2615c8..b1043a1 100644 --- a/src/screen/world.c +++ b/src/screen/world.c @@ -387,9 +387,9 @@ void dialog_no(void *p) static void hotkey_escape() { - yes_no_dialog_set("Naozaj chete ukoncit hru ?", dialog_yes, dialog_no, NULL); + yes_no_dialog_set(_("Do you really want to quit the game?"), dialog_yes, dialog_no, NULL); yes_no_dialog_set_active(TRUE); - //world_do_end(); + /*world_do_end();*/ } void startWorld() @@ -417,7 +417,7 @@ void startWorld() prepareArena(); } -static void action_analyze(space_t * space, tux_t * tux, void *p) +static void action_analyze(space_t *space, tux_t *tux, void *p) { UNUSED(space); UNUSED(p); |