(svn r162) -Feature: when exit game window pops up, 'Enter' quits the game
authordarkvater
Mon, 06 Sep 2004 16:21:35 +0000
changeset 161 74453c59315c
parent 160 db200af4794a
child 162 565551f829e9
(svn r162) -Feature: when exit game window pops up, 'Enter' quits the game
intro_gui.c
--- a/intro_gui.c	Sun Sep 05 17:11:00 2004 +0000
+++ b/intro_gui.c	Mon Sep 06 16:21:35 2004 +0000
@@ -210,6 +210,10 @@
 			break;
 		}
 		break;
+	case WE_KEYPRESS: /* Exit game on pressing 'Enter' */
+		if (e->keypress.keycode == WKC_RETURN)
+			_exit_game = true;
+		break; 
 	}
 }