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

View File

@ -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;
}