diff src/video/win32/SDL_win32keyboard.c @ 4561:e4b2b7207f79

Fixed remapping the Delete key and detecting the keypad Delete key.
author Sam Lantinga <slouken@libsdl.org>
date Tue, 20 Jul 2010 23:59:16 -0700
parents 3e69e077cb95
children 518d1679d2d0
line wrap: on
line diff
--- a/src/video/win32/SDL_win32keyboard.c	Tue Jul 20 23:25:24 2010 -0700
+++ b/src/video/win32/SDL_win32keyboard.c	Tue Jul 20 23:59:16 2010 -0700
@@ -101,8 +101,7 @@
 
         /* Make sure this scancode is a valid character scancode */
         scancode = win32_scancode_table[i];
-        if (scancode == SDL_SCANCODE_UNKNOWN ||
-            (keymap[scancode] & SDLK_SCANCODE_MASK)) {
+        if (scancode == SDL_SCANCODE_UNKNOWN || keymap[scancode] >= 127) {
             continue;
         }