Skip to content

Commit

Permalink
Fixed bug 2450 - Crosscompiling for Win32 with MinGW fails due to WM_…
Browse files Browse the repository at this point in the history
…UNICHAR undeclared
  • Loading branch information
slouken committed Mar 15, 2014
1 parent 9245c93 commit 56b40ce
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/video/windows/SDL_windowsevents.c
Expand Up @@ -71,6 +71,9 @@
#ifndef WM_MOUSEHWHEEL
#define WM_MOUSEHWHEEL 0x020E
#endif
#ifndef WM_UNICHAR
#define WM_UNICHAR 0x0109
#endif

static SDL_Scancode
WindowsScanCodeToSDLScanCode( LPARAM lParam, WPARAM wParam )
Expand Down

0 comments on commit 56b40ce

Please sign in to comment.