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
This commit is contained in:
feal87@gmail.com 2010-12-20 13:42:53 +00:00
parent 02818b0304
commit 9c9e2b8c51
1 changed files with 3 additions and 3 deletions

View File

@ -211,19 +211,19 @@ namespace GSDumpGUI
case 1: case 1:
fixed (byte* gifdata = itm.data) 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; break;
case 2: case 2:
fixed (byte* gifdata = itm.data) 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; break;
case 3: case 3:
fixed (byte* gifdata = itm.data) 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; break;
} }