mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 23:48:59 +08:00
8dc8d0e0c9
* [sdl2] Update to SDL2 2.0.9 * [sdl2] Fix x86-windows and fix uwp patch
16 lines
359 B
Diff
16 lines
359 B
Diff
diff --git a/src/events/SDL_mouse.c b/src/events/SDL_mouse.c
|
|
index ff23c5e..fc90bba 100644
|
|
--- a/src/events/SDL_mouse.c
|
|
+++ b/src/events/SDL_mouse.c
|
|
@@ -20,6 +20,10 @@
|
|
*/
|
|
#include "../SDL_internal.h"
|
|
|
|
+#ifdef __WIN32__
|
|
+#include "../core/windows/SDL_windows.h"
|
|
+#endif
|
|
+
|
|
/* General mouse handling code for SDL */
|
|
|
|
#include "SDL_assert.h"
|