diff --git a/src/video/windows/SDL_windowsevents.c b/src/video/windows/SDL_windowsevents.c index 658845e93..6a9762a9d 100644 --- a/src/video/windows/SDL_windowsevents.c +++ b/src/video/windows/SDL_windowsevents.c @@ -64,6 +64,10 @@ #define WM_TOUCH 0x0240 #endif +/* Fix cygwin compile */ +#ifndef VK_OEM_NEC_EQUAL +#define VK_OEM_NEC_EQUAL 0x92 +#endif static SDL_Scancode WindowsScanCodeToSDLScanCode( int lParam, int wParam, const SDL_Scancode *key_map )