From 9c9e2b8c51f0b9bb035cc9f2b551095d1f5066cf Mon Sep 17 00:00:00 2001 From: "feal87@gmail.com" Date: Mon, 20 Dec 2010 13:42:53 +0000 Subject: [PATCH] Little change to the function called. (Shouldn't do any kind of difference) git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4111 96395faa-99c1-11dd-bbfe-3dabce05a288 --- tools/GSDumpGUI/Library/GSDXWrapper.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/GSDumpGUI/Library/GSDXWrapper.cs b/tools/GSDumpGUI/Library/GSDXWrapper.cs index 9b4d16c731..81816da485 100644 --- a/tools/GSDumpGUI/Library/GSDXWrapper.cs +++ b/tools/GSDumpGUI/Library/GSDXWrapper.cs @@ -211,19 +211,19 @@ namespace GSDumpGUI case 1: fixed (byte* gifdata = itm.data) { - GSgifTransfer(new IntPtr(gifdata + 1), (itm.data.Length - 1) /16); + GSgifTransfer2(new IntPtr(gifdata + 1), (itm.data.Length - 1) /16); } break; case 2: fixed (byte* gifdata = itm.data) { - GSgifTransfer2(new IntPtr(gifdata + 1), (itm.data.Length - 1) /16); + GSgifTransfer3(new IntPtr(gifdata + 1), (itm.data.Length - 1) /16); } break; case 3: fixed (byte* gifdata = itm.data) { - GSgifTransfer3(new IntPtr(gifdata + 1), (itm.data.Length - 1) /16); + GSgifTransfer(new IntPtr(gifdata + 1), (itm.data.Length - 1) /16); } break; }