Use hex output for %E opcode format specifier.

This makes %E's addresses consistent with other address output.
This commit is contained in:
Bill Currie 2013-01-17 16:42:28 +09:00
parent 00192ea1da
commit c25e68ecaf

View file

@ -932,8 +932,9 @@ PR_PrintStatement (progs_t *pr, dstatement_t *s, int contents)
str = "bad entity.field";
break;
}
str = global_string (pr, opval, optype, contents & 1);
str = va ("%d %d %s", s->a, s->b, str);
str = global_string (pr, opval, optype,
contents & 1);
str = va ("$%x $%x %s", s->a, s->b, str);
}
break;
default: