From 0b9d5c2b692bdf817fae7d8b45d400a95dd0fecb Mon Sep 17 00:00:00 2001 From: bvernoux Date: Fri, 16 Apr 2021 19:40:12 +0200 Subject: [PATCH] Fix build with SDK 8.1 or more (replace #include supported only with Windows SDK10 by #include support by Windows SDK 8.1 or more) --- core/src/gui/widgets/folder_select.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/gui/widgets/folder_select.h b/core/src/gui/widgets/folder_select.h index 3fdeff0f..86b4afb1 100644 --- a/core/src/gui/widgets/folder_select.h +++ b/core/src/gui/widgets/folder_select.h @@ -6,7 +6,7 @@ #ifdef _WIN32 #include -#include +#include #include #endif