mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Bump versions to prevent incomatible server-server connections.
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
//
|
||||
|
||||
#define SERVER_VERSION_MAJOR 0
|
||||
#define SERVER_VERSION_MINOR 5
|
||||
#define SERVER_VERSION_MINOR 6
|
||||
#define SERVER_VERSION_SUB "-a"
|
||||
#define SERVER_NAME "NewCoin"
|
||||
|
||||
@@ -15,12 +15,12 @@
|
||||
(SERVER_NAME "-" SV_STRINGIZE(SERVER_VERSION_MAJOR) "." SV_STRINGIZE(SERVER_VERSION_MINOR) SERVER_VERSION_SUB)
|
||||
|
||||
// Version we prefer to speak:
|
||||
#define PROTO_VERSION_MAJOR 0
|
||||
#define PROTO_VERSION_MINOR 7
|
||||
#define PROTO_VERSION_MAJOR 1
|
||||
#define PROTO_VERSION_MINOR 0
|
||||
|
||||
// Version we will speak to:
|
||||
#define MIN_PROTO_MAJOR 0
|
||||
#define MIN_PROTO_MINOR 7
|
||||
#define MIN_PROTO_MAJOR 1
|
||||
#define MIN_PROTO_MINOR 0
|
||||
|
||||
#define MAKE_VERSION_INT(maj,min) ((maj << 16) | min)
|
||||
#define GET_VERSION_MAJOR(ver) (ver >> 16)
|
||||
|
||||
Reference in New Issue
Block a user