From b36d217284edd36fe2cf89ce0604ce7e209a8275 Mon Sep 17 00:00:00 2001 From: mkrsym1 Date: Mon, 5 Feb 2024 16:27:29 +0200 Subject: [PATCH] SR 2.0.0: update checksums --- game_payload/src/hsr/hsr.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/game_payload/src/hsr/hsr.c b/game_payload/src/hsr/hsr.c index ceae83f..f877b6c 100644 --- a/game_payload/src/hsr/hsr.c +++ b/game_payload/src/hsr/hsr.c @@ -9,7 +9,7 @@ const char *HSR_ASSEMBLY_PATH = "GameAssembly.dll"; const char *HSR_TXS_SECTION_NAME = ".ace"; const char *HSR_TVM_SECTION_NAME = ".tvm0"; -#define HSR_VERSION "1.6.0" +#define HSR_VERSION "2.0.0" enum hsr_region { HSR_INVALID, @@ -23,14 +23,14 @@ struct crc_region_pair { }; const struct crc_region_pair HSR_REGIONS[] = { - { 0x5741ce50, HSR_OS }, // os v1.6.0 - { 0xce891f97, HSR_CN } // cn v1.6.0 + { 0x5be3a560, HSR_OS }, // os v2.0.0 + { 0x974e826f, HSR_CN } // cn v2.0.0 }; #define JUMP_SIZE (6 + sizeof(void*)) // Temporarily hardcoded offset -// v1.6.0, same for os and cn +// v2.0.0, same for os and cn #define WTSUD_PATCH_OFFSET 0x16510 char wtsud_original_bytes[JUMP_SIZE];