bsnes: remove embarrassing emptry space from tracer output
leftover after switching from 4-digit hcounter() to 3-digit hdot()
This commit is contained in:
parent
fb4826171b
commit
86c347c213
|
@ -441,7 +441,7 @@ void CPUcore::disassemble_opcode(char *output, uint32 addr) {
|
|||
strcat(s, t);
|
||||
strcat(s, " ");
|
||||
|
||||
sprintf(t, "V:%3d H:%4d", cpu.vcounter(), cpu.hdot());
|
||||
sprintf(t, "V:%3d H:%3d", cpu.vcounter(), cpu.hdot());
|
||||
strcat(s, t);
|
||||
}
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue