mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-31 12:00:38 +00:00
apply the typemask where previously forgotten
This commit is contained in:
parent
fc6bd54943
commit
cdb7d06521
1 changed files with 1 additions and 1 deletions
2
exec.c
2
exec.c
|
@ -375,7 +375,7 @@ static void trace_print_global(qc_program *prog, unsigned int glob, int vtype)
|
|||
len = printf("$");
|
||||
else
|
||||
len = printf("%s ", name);
|
||||
vtype = def->type;
|
||||
vtype = def->type & DEF_TYPEMASK;
|
||||
}
|
||||
else
|
||||
len = printf("[@%u] ", glob);
|
||||
|
|
Loading…
Reference in a new issue