mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-17 09:02:25 +00:00
unnamed globals in the trace output use [@addr] now instead of [#addr] since # is used as a prefix for all immediates, so now it's less confusing
This commit is contained in:
parent
9b2e26a189
commit
48d330a1e9
1 changed files with 1 additions and 1 deletions
2
exec.c
2
exec.c
|
@ -255,7 +255,7 @@ static void trace_print_global(qc_program *prog, unsigned int glob, int vtype)
|
|||
vtype = def->type;
|
||||
}
|
||||
else
|
||||
len = printf("[#%u] ", glob);
|
||||
len = printf("[@%u] ", glob);
|
||||
|
||||
switch (vtype) {
|
||||
case TYPE_VOID:
|
||||
|
|
Loading…
Reference in a new issue