mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
oops, %O should be in hex
This commit is contained in:
parent
72eca6a956
commit
cbd5c70320
1 changed files with 1 additions and 1 deletions
|
@ -514,7 +514,7 @@ PR_PrintStatement (progs_t * pr, dstatement_t *s)
|
|||
dasprintf (line, "%d", (short) opval);
|
||||
break;
|
||||
case 'O':
|
||||
dasprintf (line, "%d", addr + (short) opval);
|
||||
dasprintf (line, "%04x", addr + (short) opval);
|
||||
break;
|
||||
default:
|
||||
goto err;
|
||||
|
|
Loading…
Reference in a new issue