From: Wolfgang (Blub) Bumiller Date: Thu, 23 Aug 2012 08:18:59 +0000 (+0200) Subject: vtos should use the same quotes as we use in qc source X-Git-Tag: 0.1-rc1~83 X-Git-Url: https://de.git.xonotic.org/?a=commitdiff_plain;h=8465f98f37bdee86745ba535d65e682c6918825c;p=xonotic%2Fgmqcc.git vtos should use the same quotes as we use in qc source --- diff --git a/exec.c b/exec.c index dc93a38..53bcb07 100644 --- a/exec.c +++ b/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;