Making the trace format easier to diff with the old stuff.

This commit is contained in:
Ben Vanik
2013-12-08 20:42:12 -08:00
parent 65a36fd69c
commit 2e5489e22f
2 changed files with 4 additions and 4 deletions

View File

@@ -382,7 +382,7 @@ int TranslateInvalid(TranslationContext& ctx, Instr* i) {
uint32_t IntCode_COMMENT(IntCodeState& ics, const IntCode* i) {
char* value = (char*)(i->src1_reg | ((uint64_t)i->src2_reg << 32));
IPRINT("%s\n", value);
IPRINT("XE[t] :%d: %s\n", ics.thread_state->GetThreadID(), value);
IFLUSH();
return IA_NEXT;
}