mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-21 02:40:56 +00:00
vtos should use the same quotes as we use in qc source
This commit is contained in:
parent
7e3ccf4626
commit
8465f98f37
1 changed files with 1 additions and 1 deletions
2
exec.c
2
exec.c
|
@ -702,7 +702,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