From: <qu...@ca...> - 2016-02-11 07:31:50
|
So, if you have: float f; // normal qc f = f + 1; // with fteqcc (and maybe others) you can: f++; // just like regular c However - if f is a global or local float the progs.dat size is larger by 8 bytes with ++. optimize has no effect on this. it happens with every instance. progs.dat size stays the same if you do this with entity fields: self.frags++; |