From 4d82a5eca39c91a02045b966cf956785387f7853 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sun, 16 Apr 2006 17:26:50 +0000 Subject: [PATCH] saving also on 'S' (since F2 isn't reliable) --- src/eressea/gmtool.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/eressea/gmtool.c b/src/eressea/gmtool.c index f25330336..cc0aa4acb 100644 --- a/src/eressea/gmtool.c +++ b/src/eressea/gmtool.c @@ -865,9 +865,10 @@ handlekey(state * st, int c) st->wnd_info->update |= 1; st->wnd_status->update |= 1; break; + case 'S': case KEY_SAVE: case KEY_F(2): - if (st->modified) { + /* if (st->modified) */ { char datafile[MAX_PATH]; askstring(st->wnd_status->handle, "save as:", datafile, sizeof(datafile));