From d9d8c031d48a2ad900e28fda91d8f4bc609d85e4 Mon Sep 17 00:00:00 2001 From: ANR2ME Date: Tue, 11 Aug 2020 22:55:52 +0700 Subject: [PATCH] Making sure std::min/max are not overridden by windows header's min/max --- Core/Dialog/PSPNetconfDialog.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Core/Dialog/PSPNetconfDialog.cpp b/Core/Dialog/PSPNetconfDialog.cpp index 1898cbcd94..36a4476eca 100644 --- a/Core/Dialog/PSPNetconfDialog.cpp +++ b/Core/Dialog/PSPNetconfDialog.cpp @@ -15,6 +15,9 @@ // Official git repository and contact information can be found at // https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/. +#if defined(_WIN32) +#include "Common/CommonWindows.h" +#endif #include "i18n/i18n.h" #include "Common/Serialize/Serializer.h" #include "Common/Serialize/SerializeFuncs.h"