summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/TextureDecoder.h
diff options
context:
space:
mode:
authormemberTwo.mb2 <memberTwo.mb2@gmail.com>2008-12-04 20:21:32 +0000
committermemberTwo.mb2 <memberTwo.mb2@gmail.com>2008-12-04 20:21:32 +0000
commit83e4bd2e5f8546817c23037dd12d9a1dfd0b4ff8 (patch)
tree9458e9bde8b3c4bd57026a0db42f10bed4a4ad8f /Source/Core/VideoCommon/Src/TextureDecoder.h
parent42e485ba0bb660615ef7892b3cb428afc09ac064 (diff)
Fix MP1 & MP2 texture font issue. Not very robust but the general idea is there :p
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1401 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon/Src/TextureDecoder.h')
-rw-r--r--Source/Core/VideoCommon/Src/TextureDecoder.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Src/TextureDecoder.h b/Source/Core/VideoCommon/Src/TextureDecoder.h
index bac0cec7a1..2c0647f737 100644
--- a/Source/Core/VideoCommon/Src/TextureDecoder.h
+++ b/Source/Core/VideoCommon/Src/TextureDecoder.h
@@ -77,7 +77,8 @@ enum PC_TexFormat
PC_TexFormat TexDecoder_Decode(u8 *dst, const u8 *src, int width, int height, int texformat, int tlutaddr, int tlutfmt);
-u32 TexDecoder_GetSafeTextureHash(const u8 *src, int width, int height, int texformat);
+//u32 TexDecoder_GetSafeTextureHash(const u8 *src, int width, int height, int texformat);
+u32 TexDecoder_GetSafeTextureHash(const u8 *src, int width, int height, int texformat, u32 seed=0);
void TexDecoder_SetTexFmtOverlayOptions(bool enable, bool center);