From 93962ec168002aaa6d4756104264ca0c1301fca0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Camilla=20L=C3=B6wy?= Date: Sun, 14 Apr 2019 20:51:46 +0200 Subject: [PATCH] Win32: Fix VS 2010 build error --- src/win32_platform.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/win32_platform.h b/src/win32_platform.h index 9a867c35..728a78a0 100644 --- a/src/win32_platform.h +++ b/src/win32_platform.h @@ -101,6 +101,9 @@ #ifndef _WIN32_WINNT_WINBLUE #define _WIN32_WINNT_WINBLUE 0x0602 #endif +#ifndef _WIN32_WINNT_WIN8 + #define _WIN32_WINNT_WIN8 0x0602 +#endif #ifndef WM_GETDPISCALEDSIZE #define WM_GETDPISCALEDSIZE 0x02e4 #endif