diff src/video/SDL_video.c @ 567:969fbd4dcd4e

From: David Hedbor Subject: Qtopia patches (input grabbing and iconify) Ok, here's a patch that adds support for SDL_WM_GrabInput (default state is "ungrabbed") and SDL_WM_IconifyWindow. Also has some other tweaks such as taking additional steps to clean up when exiting (bypassing certain bugs in some versions of Qtopia and/or OPIE) and it also maps Key_F33 to Key_Return (this is the Zaurus 'ok' key).
author Sam Lantinga <slouken@libsdl.org>
date Mon, 20 Jan 2003 01:08:20 +0000
parents 796f2fe699be
children be6495850a62
line wrap: on
line diff
--- a/src/video/SDL_video.c	Mon Jan 20 00:25:28 2003 +0000
+++ b/src/video/SDL_video.c	Mon Jan 20 01:08:20 2003 +0000
@@ -54,6 +54,9 @@
 #ifdef ENABLE_NANOX
 	&NX_bootstrap,
 #endif
+#ifdef ENABLE_QTOPIA
+	&Qtopia_bootstrap,
+#endif
 #ifdef ENABLE_FBCON
 	&FBCON_bootstrap,
 #endif
@@ -111,9 +114,6 @@
 #ifdef ENABLE_GEM
 	&GEM_bootstrap,
 #endif
-#ifdef ENABLE_QTOPIA
-	&Qtopia_bootstrap,
-#endif
 #ifdef ENABLE_PICOGUI
 	&PG_bootstrap,
 #endif