From: Wolfgang (Blub) Bumiller Date: Sat, 18 Aug 2012 12:56:15 +0000 (+0200) Subject: add 'local' keyword in fields.qc, it's for qcc standard anyway X-Git-Tag: 0.1-rc1~224 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=efc540ceba2bcc6fc854ec6ba8a8515f4de3adb2;p=xonotic%2Fgmqcc.git add 'local' keyword in fields.qc, it's for qcc standard anyway --- diff --git a/data/fields.qc b/data/fields.qc index 7c29959..19d9cc7 100644 --- a/data/fields.qc +++ b/data/fields.qc @@ -15,7 +15,6 @@ void(entity) kill = #4; .void() fun; void(entity a, .float f) printfield = { - ftos(3+4); print3("The field is ", ftos(a.f), "\n"); }; @@ -24,7 +23,7 @@ void() funny = { }; void() main = { - entity pawn; + local entity pawn; pawn = spawn();