From: Rudolf Polzer Date: Mon, 17 Dec 2012 14:17:18 +0000 (+0100) Subject: fix semicolon X-Git-Tag: xonotic-v0.7.0~99^2~13 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=52ff1ea01937c15aacb9e3ec1574037f09f70643;p=xonotic%2Fxonotic-data.pk3dir.git fix semicolon --- diff --git a/qcsrc/server/antilag.qc b/qcsrc/server/antilag.qc index 5b10ab50b..24671db6f 100644 --- a/qcsrc/server/antilag.qc +++ b/qcsrc/server/antilag.qc @@ -1,6 +1,6 @@ #define ANTILAG_MAX_ORIGINS 64 -.vector antilag_origins[ANTILAG_MAX_ORIGINS]; FTEQCC_YOU_SUCK_THIS_IS_NOT_UNREFERENCED(antilag_origins); -.float antilag_times[ANTILAG_MAX_ORIGINS]; FTEQCC_YOU_SUCK_THIS_IS_NOT_UNREFERENCED(antilag_times); +.vector antilag_origins[ANTILAG_MAX_ORIGINS]; FTEQCC_YOU_SUCK_THIS_IS_NOT_UNREFERENCED(antilag_origins) +.float antilag_times[ANTILAG_MAX_ORIGINS]; FTEQCC_YOU_SUCK_THIS_IS_NOT_UNREFERENCED(antilag_times) .float antilag_index; .vector antilag_saved_origin; .float antilag_takenback;