GSDumpGUI: minor change to debugging info

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4151 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
sudonim1 2010-12-26 14:12:31 +00:00
parent 100b3f2aea
commit e758b6e10a
3 changed files with 7 additions and 1 deletions

View File

@ -415,7 +415,7 @@ namespace GSDumpGUI
val += "regs~";
foreach (var itm in tag.regs)
{
val += ((GIFReg)itm).ToString() + "~";
val += itm.ToString() + "~";
}
break;
case GSType.VSync:

View File

@ -7,5 +7,10 @@ namespace GSDumpGUI
public class GifImage : IGifData
{
public byte[] Data;
public override string ToString()
{
return "IMAGE@" + Data.Length.ToString() + " bytes";
}
}
}

View File

@ -6,5 +6,6 @@ namespace GSDumpGUI
{
public interface IGifData
{
String ToString();
}
}