Fix version numbers of archive builds
This commit is contained in:
parent
e6fd96f054
commit
1f5a7cef6f
1 changed files with 5 additions and 4 deletions
|
@ -10,10 +10,11 @@
|
||||||
// client versioning
|
// client versioning
|
||||||
//
|
//
|
||||||
|
|
||||||
static const int CLIENT_VERSION_MAJOR = 0;
|
// These need to be macro's, as version.cpp's voodoo requires it
|
||||||
static const int CLIENT_VERSION_MINOR = 6;
|
#define CLIENT_VERSION_MAJOR 0
|
||||||
static const int CLIENT_VERSION_REVISION = 99;
|
#define CLIENT_VERSION_MINOR 6
|
||||||
static const int CLIENT_VERSION_BUILD = 0;
|
#define CLIENT_VERSION_REVISION 99
|
||||||
|
#define CLIENT_VERSION_BUILD 0
|
||||||
|
|
||||||
static const int CLIENT_VERSION =
|
static const int CLIENT_VERSION =
|
||||||
1000000 * CLIENT_VERSION_MAJOR
|
1000000 * CLIENT_VERSION_MAJOR
|
||||||
|
|
Loading…
Reference in a new issue