mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 12:52:46 +00:00
fix printing of op_c for storeb
This commit is contained in:
parent
3f7c4f146e
commit
598c82352f
1 changed files with 6 additions and 2 deletions
|
@ -88,8 +88,12 @@ PR_PrintStatement (progs_t * pr, dstatement_t *s)
|
|||
else
|
||||
Sys_Printf ("%s", PR_GlobalStringNoContents (pr, s->b));
|
||||
}
|
||||
if (op->type_c != ev_void)
|
||||
Sys_Printf ("%s", PR_GlobalStringNoContents (pr, s->c));
|
||||
if (op->type_c != ev_void) {
|
||||
if (op->type_b == ev_pointer && op->type_c == ev_integer)
|
||||
Sys_Printf ("%s", PR_GlobalString (pr, s->c, op->type_c));
|
||||
else
|
||||
Sys_Printf ("%s", PR_GlobalStringNoContents (pr, s->c));
|
||||
}
|
||||
}
|
||||
Sys_Printf ("\n");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue