From 19c56cfda008d767dff1e4fbb5fac80a7baf7d1e Mon Sep 17 00:00:00 2001 From: FreakyMutantMan <freakymutantman@gmail.com> Date: Mon, 25 Nov 2024 03:41:00 -0800 Subject: [PATCH] Load ColorProfileHardcodeTest.pk3 at launch. --- src/d_main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/d_main.cpp b/src/d_main.cpp index f45ccbc64..ba26d977c 100644 --- a/src/d_main.cpp +++ b/src/d_main.cpp @@ -119,6 +119,7 @@ extern "C" consvar_t cv_lua_profile, cv_menuframeskip; #define ASSET_HASH_UNLOCKS_PK3 "ebc06ff46c2cc80e93dadf5f7099d7b8" #define ASSET_HASH_STAFFGHOSTS_PK3 "9cb77f6c0e801c1bc61ca84870b65707" #define ASSET_HASH_SHADERS_PK3 "7aefd2aa55129b31210aa094cf782695" +#define ASSET_HASH_COLORPROFILE_PK3 "59f5abf0f6ffe7f85a6ce26ff2ed01a4" #ifdef USE_PATCH_FILE #define ASSET_HASH_PATCH_PK3 "00000000000000000000000000000000" #endif @@ -1393,6 +1394,7 @@ static void IdentifyVersion(void) D_AddFile(startupiwads, va(pandf,srb2waddir,"unlocks.pk3")); D_AddFile(startupiwads, va(pandf,srb2waddir,"staffghosts.pk3")); D_AddFile(startupiwads, va(pandf,srb2waddir,"shaders.pk3")); + D_AddFile(startupiwads, va(pandf,srb2waddir,"ColorProfileHardcodeTest.pk3")); #ifdef USE_PATCH_FILE D_AddFile(startupiwads, va(pandf,srb2waddir,"patch.pk3")); #endif @@ -1718,6 +1720,7 @@ void D_SRB2Main(void) mainwads++; W_VerifyFileMD5(mainwads, ASSET_HASH_UNLOCKS_PK3); // unlocks.pk3 mainwads++; W_VerifyFileMD5(mainwads, ASSET_HASH_STAFFGHOSTS_PK3); // staffghosts.pk3 mainwads++; W_VerifyFileMD5(mainwads, ASSET_HASH_SHADERS_PK3); // shaders.pk3 + mainwads++; W_VerifyFileMD5(mainwads, ASSET_HASH_COLORPROFILE_PK3); // ColorProfileHardcodeTest.pk3 #ifdef USE_PATCH_FILE mainwads++; W_VerifyFileMD5(mainwads, ASSET_HASH_PATCH_PK3); // patch.pk3 #endif -- GitLab