more optimizations

removed ancient firedelays
maybe some more...
This commit is contained in:
jeefo 2015-07-12 17:18:20 +03:00
commit c445d07c2b
13 changed files with 383 additions and 472 deletions

View file

@ -4068,3 +4068,8 @@ public:
// Sizeof bounds
//
#define SIZEOF_CHAR(in) sizeof (in) - 1
//
// Squared Length
//
#define GET_SQUARE(in) (in * in)