mirror of
https://github.com/libretro/pcsx2.git
synced 2025-01-20 00:12:43 +00:00
GSDumpGUI: temporary fix for debugger crash until we implement the real solution
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4163 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
4c3e22e831
commit
3d0b2979bd
@ -154,7 +154,11 @@ namespace GSDumpGUI
|
||||
case GIFFLG.GIF_FLG_IMAGE2:
|
||||
GifImage image = new GifImage();
|
||||
image.Data = new byte[t.nloop * 16];
|
||||
Array.Copy(data, 16, image.Data, 0, t.nloop * 16);
|
||||
try
|
||||
{
|
||||
Array.Copy(data, 16, image.Data, 0, t.nloop * 16);
|
||||
}
|
||||
catch (ArgumentException) { }
|
||||
t.regs.Add(image);
|
||||
break;
|
||||
default:
|
||||
|
Loading…
x
Reference in New Issue
Block a user