summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/TextureDecoder_x64.cpp
diff options
context:
space:
mode:
authorTillmann Karras <tilkax@gmail.com>2014-02-23 15:14:27 +0100
committerTillmann Karras <tilkax@gmail.com>2014-02-28 12:28:19 +0100
commit6914eca167d35b4ffb3e1979bb690b378bb8448a (patch)
tree6b635bbccc4a04ed7e1c1db37a52ab27bc8aa692 /Source/Core/VideoCommon/TextureDecoder_x64.cpp
parenta3508823def6b3a013436e91653ed758aadf27eb (diff)
Fix various warnings reported by clang
- mostly remove unused variables - rename some generic JIT identifiers
Diffstat (limited to 'Source/Core/VideoCommon/TextureDecoder_x64.cpp')
-rw-r--r--Source/Core/VideoCommon/TextureDecoder_x64.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/Core/VideoCommon/TextureDecoder_x64.cpp b/Source/Core/VideoCommon/TextureDecoder_x64.cpp
index d00a9bb454..875ba8f8e2 100644
--- a/Source/Core/VideoCommon/TextureDecoder_x64.cpp
+++ b/Source/Core/VideoCommon/TextureDecoder_x64.cpp
@@ -177,13 +177,6 @@ int TexDecoder_GetPaletteSize(int format)
}
}
-static inline u32 decodeIA8(u16 val)
-{
- int a = val >> 8;
- int i = val & 0xFF;
- return (a << 24) | (i << 16) | (i << 8) | i;
-}
-
static inline u32 decode5A3(u16 val)
{
int r,g,b,a;