summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/TextureDecoder_x64.cpp
diff options
context:
space:
mode:
authorTillmann Karras <tilkax@gmail.com>2014-07-14 02:59:31 +0200
committerTillmann Karras <tilkax@gmail.com>2014-07-14 02:59:31 +0200
commit0be03252ccec34c315d3be4309442f3b93b4851b (patch)
treee25a5ac91aeba341527905d5e5caa4149e9b3f2f /Source/Core/VideoCommon/TextureDecoder_x64.cpp
parentb6f3ae23bcb4c07351114abaab554307d2286e91 (diff)
VideoCommon: fix clang version check
That was... er... a typo!
Diffstat (limited to 'Source/Core/VideoCommon/TextureDecoder_x64.cpp')
-rw-r--r--Source/Core/VideoCommon/TextureDecoder_x64.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/TextureDecoder_x64.cpp b/Source/Core/VideoCommon/TextureDecoder_x64.cpp
index 10b675a772..82123ac91e 100644
--- a/Source/Core/VideoCommon/TextureDecoder_x64.cpp
+++ b/Source/Core/VideoCommon/TextureDecoder_x64.cpp
@@ -28,7 +28,7 @@
// This avoids a harmless warning from a system header in Clang;
// see http://llvm.org/bugs/show_bug.cgi?id=16093
-#ifdef __clang__ && __clang_major__ * 100 + __clang_minor__ <= 304
+#ifdef __clang__ && __clang_major__ * 100 + __clang_minor__ < 304
#pragma clang diagnostic ignored "-Wshadow"
#endif