mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
100b3f2aea
commit
e758b6e10a
|
@ -415,7 +415,7 @@ namespace GSDumpGUI
|
||||||
val += "regs~";
|
val += "regs~";
|
||||||
foreach (var itm in tag.regs)
|
foreach (var itm in tag.regs)
|
||||||
{
|
{
|
||||||
val += ((GIFReg)itm).ToString() + "~";
|
val += itm.ToString() + "~";
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case GSType.VSync:
|
case GSType.VSync:
|
||||||
|
|
|
@ -7,5 +7,10 @@ namespace GSDumpGUI
|
||||||
public class GifImage : IGifData
|
public class GifImage : IGifData
|
||||||
{
|
{
|
||||||
public byte[] Data;
|
public byte[] Data;
|
||||||
|
|
||||||
|
public override string ToString()
|
||||||
|
{
|
||||||
|
return "IMAGE@" + Data.Length.ToString() + " bytes";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,5 +6,6 @@ namespace GSDumpGUI
|
||||||
{
|
{
|
||||||
public interface IGifData
|
public interface IGifData
|
||||||
{
|
{
|
||||||
|
String ToString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue