From: TimePath Date: Sun, 3 May 2015 22:25:19 +0000 (+1000) Subject: Don't accumulate the beginning of the constructor X-Git-Tag: xonotic-v0.8.1~61^2~8 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=a4c9b183a2e1d7dd25c4e144cdf419291b937995;p=xonotic%2Fxonotic-data.pk3dir.git Don't accumulate the beginning of the constructor --- diff --git a/qcsrc/menu/oo/classes.qc b/qcsrc/menu/oo/classes.qc index e6182ca33..95bc0b28b 100644 --- a/qcsrc/menu/oo/classes.qc +++ b/qcsrc/menu/oo/classes.qc @@ -10,7 +10,7 @@ #endif #define CLASS(cname, base) \ -[[accumulate]] entity spawn##cname(entity this, entity basevtbl) { \ +entity spawn##cname(entity this, entity basevtbl) { \ this = NEW(base); basevtbl = base##_vtbl; \ }