From 8bdbe37c91b9c642ab2a3f4cbe265a9455870366 Mon Sep 17 00:00:00 2001 From: degasus Date: Sat, 17 May 2014 00:24:18 +0200 Subject: [PATCH] TexCache: Wipe pal hash --- Source/Core/VideoCommon/TextureCacheBase.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Source/Core/VideoCommon/TextureCacheBase.h b/Source/Core/VideoCommon/TextureCacheBase.h index e3eb6a00fa..d84d90fc61 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.h +++ b/Source/Core/VideoCommon/TextureCacheBase.h @@ -33,7 +33,6 @@ public: u32 addr; u32 size_in_bytes; u64 hash; - //u32 pal_hash; u32 format; enum TexCacheEntryType type; @@ -64,10 +63,9 @@ public: virtual_height = _virtual_height; } - void SetHashes(u64 _hash/*, u32 _pal_hash*/) + void SetHashes(u64 _hash) { hash = _hash; - //pal_hash = _pal_hash; }