sdl.c
changeset 135 638fb31434eb
parent 129 df1a60bc0d70
child 167 a38a34da7282
--- a/sdl.c	Tue Aug 24 21:35:11 2004 +0000
+++ b/sdl.c	Tue Aug 24 22:41:42 2004 +0000
@@ -385,8 +385,11 @@
 	}
 
 	// check scancode for BACKQUOTE key, because we want the key left of "1", not anything else (on non-US keyboards)
+#if defined(WIN32)
+	if (sym->scancode == 41) key |= WKC_BACKQUOTE;
+#else
 	if (sym->scancode == 49) key |= WKC_BACKQUOTE;
-	
+#endif
 	// META are the command keys on mac
 	if (sym->mod & KMOD_META) key |= WKC_META;
 	if (sym->mod & KMOD_SHIFT) key |= WKC_SHIFT;