summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/TextureDecoder_Common.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-04-27 23:17:38 -0400
committerLioncash <mathew1800@gmail.com>2015-04-27 23:17:41 -0400
commit8e59987d4697918f7779e252901b38d8dc0db3ef (patch)
tree8a2922cc62dd5717a4c60cc7311812d15c539d9c /Source/Core/VideoCommon/TextureDecoder_Common.cpp
parent5091a183691ce2e69431c13a5dfe23288c52e823 (diff)
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)
Diffstat (limited to 'Source/Core/VideoCommon/TextureDecoder_Common.cpp')
-rw-r--r--Source/Core/VideoCommon/TextureDecoder_Common.cpp1
1 files changed, 1 insertions, 0 deletions
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 <algorithm>
#include <cmath>
#include "Common/Common.h"