mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-18 14:21:36 +00:00
add ticks around vector strings created by vtos
This commit is contained in:
parent
9433f66a00
commit
9284c41d0a
1 changed files with 1 additions and 1 deletions
2
exec.c
2
exec.c
|
@ -668,7 +668,7 @@ static int qc_vtos(qc_program *prog)
|
|||
qcany str;
|
||||
CheckArgs(1);
|
||||
num = GetArg(0);
|
||||
snprintf(buffer, sizeof(buffer), "%g %g %g", num->vector[0], num->vector[1], num->vector[2]);
|
||||
snprintf(buffer, sizeof(buffer), "`%g %g %g`", num->vector[0], num->vector[1], num->vector[2]);
|
||||
str.string = prog_tempstring(prog, buffer);
|
||||
Return(str);
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue