mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-17 09:02:25 +00:00
Fixes
This commit is contained in:
parent
462c06d56b
commit
8c08897749
2 changed files with 4 additions and 4 deletions
4
CHANGES
4
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
|
||||
|
|
4
gmqcc.h
4
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)
|
||||
|
|
Loading…
Reference in a new issue