mirror of
https://github.com/libretro/pcsx2.git
synced 2024-12-20 00:40:47 +00:00
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:
|
||||
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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user