Skip to content

Commit 2318c9e

Browse files
committed
Remove hex from time instruction
1 parent 1090adc commit 2318c9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

thecl/thecl10.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1809,7 +1809,7 @@ th10_dump(
18091809

18101810
switch (instr->type) {
18111811
case THECL_INSTR_TIME:
1812-
sprintf(temp, "%x | +%u: //%u", instr->address, instr->time - time_last, instr->time);
1812+
sprintf(temp, "+%u: //%u", instr->time - time_last, instr->time);
18131813
time_last = instr->time;
18141814
instr->string = strdup(temp);
18151815
break;

0 commit comments

Comments
 (0)