From a9b8160d9eca9bd5dff2400628e9329f14305652 Mon Sep 17 00:00:00 2001 From: refraction Date: Thu, 1 Jul 2010 00:40:19 +0000 Subject: [PATCH] removed path1 hack from gsdx (not needed) and the redundant path3 hack git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3356 96395faa-99c1-11dd-bbfe-3dabce05a288 --- plugins/GSdx/GSState.cpp | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/plugins/GSdx/GSState.cpp b/plugins/GSdx/GSState.cpp index 6ea2a10ae7..455b6d6ee1 100644 --- a/plugins/GSdx/GSState.cpp +++ b/plugins/GSdx/GSState.cpp @@ -1421,11 +1421,6 @@ template void GSState::Transfer(uint8* mem, uint32 size) mem += sizeof(GIFTag); size--; - if(index == 2 && path.tag.EOP) - { - m_path3hack = 1; - } - if(path.nloop > 0) // eeuser 7.2.2. GIFtag: "... when NLOOP is 0, the GIF does not output anything, and values other than the EOP field are disregarded." { m_q = 1.0f; @@ -1554,13 +1549,13 @@ template void GSState::Transfer(uint8* mem, uint32 size) } } - if(index == 0) + /*if(index == 0) { if(path.tag.EOP && path.nloop == 0) { break; } - } + }*/ } if(m_dump && mem > start) @@ -1568,7 +1563,7 @@ template void GSState::Transfer(uint8* mem, uint32 size) m_dump.Transfer(index, start, mem - start); } - if(index == 0) + /*if(index == 0) { if(size == 0 && path.nloop > 0) { @@ -1583,7 +1578,7 @@ template void GSState::Transfer(uint8* mem, uint32 size) Transfer<0>(mem - 0x4000, 0x4000 / 16); } } - } + }*/ } template static void WriteState(uint8*& dst, T* src, size_t len = sizeof(T))