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:
sudonim1 2010-12-28 16:43:15 +00:00
parent 4c3e22e831
commit 3d0b2979bd

View File

@ -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: