mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-22 02:11:19 +00:00
Use hex output for %E opcode format specifier.
This makes %E's addresses consistent with other address output.
This commit is contained in:
parent
00192ea1da
commit
c25e68ecaf
1 changed files with 3 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue