From 4d4ceae6c9bfc650bfc4079d62812dd28f5b13ed Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Tue, 12 Apr 2022 00:18:51 +0200 Subject: [PATCH] (Windows) Fixed a MinGW compiler warning. --- es-app/src/guis/GuiMenu.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/es-app/src/guis/GuiMenu.cpp b/es-app/src/guis/GuiMenu.cpp index c87925699..666dfb2d4 100644 --- a/es-app/src/guis/GuiMenu.cpp +++ b/es-app/src/guis/GuiMenu.cpp @@ -9,6 +9,11 @@ #include "guis/GuiMenu.h" +#if defined(_WIN64) +// Why this is needed here is anyone's guess but without it the compilation fails. +#include +#endif + #include "CollectionSystemsManager.h" #include "EmulationStation.h" #include "FileFilterIndex.h"