(svn r162) -Feature: when exit game window pops up, 'Enter' quits the game

This commit is contained in:
darkvater 2004-09-06 16:21:35 +00:00
parent 692c147fae
commit ed1798de42
1 changed files with 4 additions and 0 deletions

View File

@ -210,6 +210,10 @@ static void AskAbandonGameWndProc(Window *w, WindowEvent *e) {
break;
}
break;
case WE_KEYPRESS: /* Exit game on pressing 'Enter' */
if (e->keypress.keycode == WKC_RETURN)
_exit_game = true;
break;
}
}