mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 06:42:08 +00:00
- version g4.13pre
This commit is contained in:
parent
38f14ccd56
commit
d63d720d4c
2 changed files with 6 additions and 5 deletions
|
@ -13,4 +13,5 @@ add_library( bz2 STATIC
|
|||
decompress.c
|
||||
huffman.c
|
||||
randtable.c )
|
||||
link_libraries("-static")
|
||||
target_link_libraries( bz2 )
|
||||
|
|
|
@ -41,20 +41,20 @@ const char *GetVersionString();
|
|||
|
||||
/** Lots of different version numbers **/
|
||||
|
||||
#define VERSIONSTR "4.12pre"
|
||||
#define VERSIONSTR "4.13pre"
|
||||
|
||||
// The version as seen in the Windows resource
|
||||
#define RC_FILEVERSION 4,11,9999,0
|
||||
#define RC_PRODUCTVERSION 4,11,9999,0
|
||||
#define RC_FILEVERSION 4,12,9999,0
|
||||
#define RC_PRODUCTVERSION 4,12,9999,0
|
||||
#define RC_PRODUCTVERSION2 VERSIONSTR
|
||||
// These are for content versioning.
|
||||
#define VER_MAJOR 4
|
||||
#define VER_MINOR 12
|
||||
#define VER_MINOR 13
|
||||
#define VER_REVISION 0
|
||||
|
||||
// This should always refer to the GZDoom version a derived port is based on and not reflect the derived port's version number!
|
||||
#define ENG_MAJOR 4
|
||||
#define ENG_MINOR 12
|
||||
#define ENG_MINOR 13
|
||||
#define ENG_REVISION 0
|
||||
|
||||
// Version identifier for network games.
|
||||
|
|
Loading…
Reference in a new issue