This commit is contained in:
kudzu_cp 2010-07-30 07:25:20 +00:00
parent 6b0518bbb4
commit 2fd6004d1e

View file

@ -48,12 +48,9 @@ namespace Cosmos.Debug.Common.CDebugger {
protected override void PacketTracePoint(byte[] aPacket) {
System.Windows.Forms.MessageBox.Show("Tracepoint: " + GetUInt32(aPacket, 0).ToString("X8"));
if (CmdTrace == null) {
System.Windows.Forms.MessageBox.Show("Null");
}
System.Windows.Forms.MessageBox.Show(mCurrentMsgType.ToString());
try {
CmdTrace(mCurrentMsgType, GetUInt32(aPacket, 0));
CmdTrace(mCurrentMsgType, GetUInt32(aPacket, 0));
System.Windows.Forms.MessageBox.Show("Calling Next");
Next(1, PacketCommand);
} catch (Exception e) {