From 8e59987d4697918f7779e252901b38d8dc0db3ef Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 27 Apr 2015 23:17:38 -0400 Subject: [PATCH] TextureDecoder_Common: Add missing algorithm include It was being indirectly included, causing VS to syntactically mark std::min/max usages as being undefined (however it still compiled fine, of course) --- Source/Core/VideoCommon/TextureDecoder_Common.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/VideoCommon/TextureDecoder_Common.cpp b/Source/Core/VideoCommon/TextureDecoder_Common.cpp index 128fbfe9f3..47a6a02c4d 100644 --- a/Source/Core/VideoCommon/TextureDecoder_Common.cpp +++ b/Source/Core/VideoCommon/TextureDecoder_Common.cpp @@ -2,6 +2,7 @@ // Licensed under GPLv2 // Refer to the license.txt file included. +#include #include #include "Common/Common.h"