1.1 --- a/src/video/windows/SDL_windowsevents.c Tue Feb 26 13:53:02 2013 -0300
1.2 +++ b/src/video/windows/SDL_windowsevents.c Tue Feb 26 20:32:11 2013 -0800
1.3 @@ -46,6 +46,9 @@
1.4 #define EXTENDED_KEYMASK (1<<24)
1.5
1.6 #define VK_ENTER 10 /* Keypad Enter ... no VKEY defined? */
1.7 +#ifndef VK_OEM_NEC_EQUAL
1.8 +#define VK_OEM_NEC_EQUAL 0x92
1.9 +#endif
1.10
1.11 /* Make sure XBUTTON stuff is defined that isn't in older Platform SDKs... */
1.12 #ifndef WM_XBUTTONDOWN
1.13 @@ -64,11 +67,6 @@
1.14 #define WM_TOUCH 0x0240
1.15 #endif
1.16
1.17 -/* Fix cygwin compile */
1.18 -#ifndef VK_OEM_NEC_EQUAL
1.19 -#define VK_OEM_NEC_EQUAL 0x92
1.20 -#endif
1.21 -
1.22 static SDL_Scancode
1.23 WindowsScanCodeToSDLScanCode( int lParam, int wParam, const SDL_Scancode *key_map )
1.24 {