diff options
Diffstat (limited to 'intro_gui.c')
-rw-r--r-- | intro_gui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/intro_gui.c b/intro_gui.c index 39d8b124d..9850f5f4c 100644 --- a/intro_gui.c +++ b/intro_gui.c @@ -218,7 +218,7 @@ static void AskAbandonGameWndProc(Window *w, WindowEvent *e) { } break; case WE_KEYPRESS: /* Exit game on pressing 'Enter' */ - if (e->keypress.keycode == WKC_RETURN) + if (e->keypress.keycode == WKC_RETURN || e->keypress.keycode == WKC_NUM_ENTER) _exit_game = true; break; } |