bsnes: remove embarrassing emptry space from tracer output

leftover after switching from 4-digit hcounter() to 3-digit hdot()
This commit is contained in:
feos 2018-05-21 22:17:41 +03:00
parent fb4826171b
commit 86c347c213
3 changed files with 1 additions and 1 deletions

View File

@ -441,7 +441,7 @@ void CPUcore::disassemble_opcode(char *output, uint32 addr) {
strcat(s, t); strcat(s, t);
strcat(s, " "); 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); strcat(s, t);
} }