diff --git a/src/d_main.c b/src/d_main.c index 056e98f8..e9549914 100644 --- a/src/d_main.c +++ b/src/d_main.c @@ -1152,9 +1152,6 @@ void D_SRB2Main(void) // Check MD5s of autoloaded files W_VerifyFileMD5(0, ASSET_HASH_SRB2_SRB); // srb2.srb/srb2.wad - W_VerifyFileMD5(1, ASSET_HASH_ZONES_DTA); // zones.dta - W_VerifyFileMD5(2, ASSET_HASH_PLAYER_DTA); // player.dta - W_VerifyFileMD5(3, ASSET_HASH_RINGS_DTA); // rings.dta #ifdef USE_PATCH_DTA W_VerifyFileMD5(4, ASSET_HASH_PATCH_DTA); // patch.dta #endif diff --git a/src/doomdef.h b/src/doomdef.h index e157eadc..35af7a0a 100644 --- a/src/doomdef.h +++ b/src/doomdef.h @@ -140,26 +140,26 @@ extern FILE *logstream; #endif -//#define DEVELOP // Disable this for release builds to remove excessive cheat commands and enable MD5 checking and stuff, all in one go. :3 +#define DEVELOP // Disable this for release builds to remove excessive cheat commands and enable MD5 checking and stuff, all in one go. :3 #ifdef DEVELOP -#define VERSION 0 // Game version -#define SUBVERSION 0 // more precise version number +#define VERSION 100 // Game version +#define SUBVERSION 4 // more precise version number #define VERSIONSTRING "Development EXE" #define VERSIONSTRINGW L"Development EXE" // most interface strings are ignored in development mode. // we use comprevision and compbranch instead. #else #define VERSION 100 // Game version -#define SUBVERSION 3 // more precise version number -#define VERSIONSTRING "v1.0.03" -#define VERSIONSTRINGW L"v1.0.03" +#define SUBVERSION 4 // more precise version number +#define VERSIONSTRING "v1.0.04" +#define VERSIONSTRINGW L"v1.0.04" // Hey! If you change this, add 1 to the MODVERSION below! // Otherwise we can't force updates! #endif // Does this version require an added patch file? // Comment or uncomment this as necessary. -#define USE_PATCH_DTA +//#define USE_PATCH_DTA // Modification options // If you want to take advantage of the Master Server's ability to force clients to update diff --git a/src/win32/Srb2win.ico b/src/win32/Srb2win.ico index 700276fd..6e667b61 100644 Binary files a/src/win32/Srb2win.ico and b/src/win32/Srb2win.ico differ