mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
02818b0304
commit
9c9e2b8c51
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue