Merge pull request #388 from Brentdevent/gametype-loadscreen

Fix gametype in loading screen
This commit is contained in:
Maurice Heumann 2023-03-23 21:31:07 +01:00 committed by GitHub
commit edaf162c5b

View File

@ -127,6 +127,9 @@ namespace client_patches
// Kill Client/Server Index Mismatch error // Kill Client/Server Index Mismatch error
utils::hook::set<uint8_t>(0x1400A7588_g, 0xEB); utils::hook::set<uint8_t>(0x1400A7588_g, 0xEB);
// Always get loadscreen gametype from s_gametype
utils::hook::set<uint8_t>(0x14228F5DC_g, 0xEB);
} }
}; };
} }