mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 06:51:47 +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);
|
dasprintf (line, "%d", (short) opval);
|
||||||
break;
|
break;
|
||||||
case 'O':
|
case 'O':
|
||||||
dasprintf (line, "%d", addr + (short) opval);
|
dasprintf (line, "%04x", addr + (short) opval);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
goto err;
|
goto err;
|
||||||
|
|
Loading…
Reference in a new issue