From d49a34a44fc86ef01d142877983e0eb9f38356c1 Mon Sep 17 00:00:00 2001 From: arcum42 Date: Sat, 23 Oct 2010 08:22:32 +0000 Subject: [PATCH] GregMiscellaneous: zerogs: Revert an accidental change to zerogs... git-svn-id: http://pcsx2.googlecode.com/svn/branches/GregMiscellaneous@3962 96395faa-99c1-11dd-bbfe-3dabce05a288 --- plugins/zerogs/opengl/Regs.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/plugins/zerogs/opengl/Regs.cpp b/plugins/zerogs/opengl/Regs.cpp index 5b7d38e12..23a07bda5 100644 --- a/plugins/zerogs/opengl/Regs.cpp +++ b/plugins/zerogs/opengl/Regs.cpp @@ -179,8 +179,6 @@ extern int g_PrevBitwiseTexX, g_PrevBitwiseTexY; void tex0Write(int i, u32 *data) { - if (!NoHighlights(i)) return; - u32 psm = (data[0] >> 20) & 0x3f; if( psm == 9 ) psm = 1; // hmm..., ffx intro menu @@ -342,8 +340,6 @@ __forceinline void testWrite(int i, u32 *data) __forceinline void clampWrite(int i, u32 *data) { - if (!NoHighlights(i)) return; - clampInfo& clamp = ZeroGS::vb[i].clamp; if( s_uClampData[i] != data[0] || ((clamp.minv>>8)|(clamp.maxv<<2)) != (data[1]&0x0fff) ) { @@ -504,8 +500,6 @@ void __fastcall GIFRegHandlerNOP(u32* data) void tex1Write(int i, u32* data) { - if (!NoHighlights(i)) return; - tex1Info& tex1 = ZeroGS::vb[i].tex1; if( conf.bilinear == 1 && (tex1.mmag != ((data[0] >> 5) & 0x1) || tex1.mmin != ((data[0] >> 6) & 0x7)) ) {