From 0a36663b01c87279cde2edb40159798c44f52c8c Mon Sep 17 00:00:00 2001 From: Rodolfo Osvaldo Bogado Date: Wed, 5 Jan 2011 17:22:25 +0000 Subject: [PATCH] corrected a little error in my last commit git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6752 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/VideoCommon/Src/TextureCacheBase.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/VideoCommon/Src/TextureCacheBase.cpp b/Source/Core/VideoCommon/Src/TextureCacheBase.cpp index 52edba3c8a..4669a95395 100644 --- a/Source/Core/VideoCommon/Src/TextureCacheBase.cpp +++ b/Source/Core/VideoCommon/Src/TextureCacheBase.cpp @@ -428,8 +428,6 @@ void TextureCache::CopyRenderTargetToTexture(u32 address, bool bFromZBuffer, switch(copyfmt) { case 0: // Z4 - colmat[3] = colmat[7] = colmat[11] = colmat[15] = 1; - break; case 1: // Z8 case 8: // Z8 colmat[2] = colmat[6] = colmat[10] = colmat[14] = 1; @@ -469,7 +467,9 @@ void TextureCache::CopyRenderTargetToTexture(u32 address, bool bFromZBuffer, { switch (copyfmt) { - case 0: // Z4 + case 0: // Z4 + colmat[3] = colmat[7] = colmat[11] = colmat[15] = 1; + break; case 1: // Z8 case 8: // Z8 colmat[0] = colmat[4] = colmat[8] = colmat[12] = 1.0f;