author | Andreas Schiffler |
Tue, 26 Feb 2013 07:50:42 -0800 | |
changeset 6929 | 7fa90e780e2d |
parent 6928 | 0195a2cc093c |
child 6930 | bb6a9d41d737 |
1.1 --- a/src/video/windows/SDL_windowsevents.c Tue Feb 26 03:34:34 2013 -0800 1.2 +++ b/src/video/windows/SDL_windowsevents.c Tue Feb 26 07:50:42 2013 -0800 1.3 @@ -64,6 +64,10 @@ 1.4 #define WM_TOUCH 0x0240 1.5 #endif 1.6 1.7 +/* Fix cygwin compile */ 1.8 +#ifndef VK_OEM_NEC_EQUAL 1.9 +#define VK_OEM_NEC_EQUAL 0x92 1.10 +#endif 1.11 1.12 static SDL_Scancode 1.13 WindowsScanCodeToSDLScanCode( int lParam, int wParam, const SDL_Scancode *key_map )