(svn r637) Add keycode for the key to open the console on BeOS
authortron
Tue, 16 Nov 2004 16:13:54 +0000
changeset 435 0623b29c5515
parent 434 0b2cd3b0a284
child 436 02955496f740
(svn r637) Add keycode for the key to open the console on BeOS
sdl.c
--- a/sdl.c	Tue Nov 16 11:40:32 2004 +0000
+++ b/sdl.c	Tue Nov 16 16:13:54 2004 +0000
@@ -396,6 +396,8 @@
 	if (sym->scancode == 10) key |= WKC_BACKQUOTE;
 #elif defined(__MORPHOS__)
 	if (sym->scancode == 0)  key |= WKC_BACKQUOTE;  // yes, that key is code '0' under MorphOS :)
+#elif defined(__BEOS__)
+	if (sym->scancode == 17)  key |= WKC_BACKQUOTE;
 #else
 	if (sym->scancode == 49) key |= WKC_BACKQUOTE;
 #endif