From: Dale Weiler Date: Sun, 21 Apr 2013 10:13:51 +0000 (+0000) Subject: Fixes X-Git-Tag: before-library~26^2 X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=commitdiff_plain;h=8c08897749366bd83a9a623727aca2927257d4cf Fixes --- diff --git a/CHANGES b/CHANGES index 0b88fd9..6941035 100644 --- a/CHANGES +++ b/CHANGES @@ -34,12 +34,12 @@ Release v0.2.9 compatbility option (enabled by default) has been added for now: -flegacy-vector-maths - Compiler intrinsics: __builtin_floor, __builtin_mod, - __builtin_exp, __builtin_isnan + __builtin_exp, __builtin_isnan - Improved memory tracing - Speed improvements * QCVM: - Improved commandline argument handling. - - More builtins: sqrt(), normalize() + - More builtins: sqrt(), normalize(), floor() * Commandline: - Nicer memory dumps - Support for making individual warnings an error diff --git a/gmqcc.h b/gmqcc.h index 32028c1..4b60682 100644 --- a/gmqcc.h +++ b/gmqcc.h @@ -40,8 +40,8 @@ #endif /*! _MSC_VER */ #define GMQCC_VERSION_MAJOR 0 -#define GMQCC_VERSION_MINOR 3 -#define GMQCC_VERSION_PATCH 0 +#define GMQCC_VERSION_MINOR 2 +#define GMQCC_VERSION_PATCH 9 #define GMQCC_VERSION_BUILD(J,N,P) (((J)<<16)|((N)<<8)|(P)) #define GMQCC_VERSION \ GMQCC_VERSION_BUILD(GMQCC_VERSION_MAJOR, GMQCC_VERSION_MINOR, GMQCC_VERSION_PATCH)