1
1
mirror of synced 2025-01-23 23:04:06 +01:00

Add SSLVerify patch

This commit is contained in:
BroGamer 2023-09-10 18:07:19 +12:00
parent 7f97f80e83
commit d846add67c
2 changed files with 3 additions and 1 deletions

View File

@ -66,7 +66,6 @@ GetGameVersion () {
stream.close ();
free (buf);
printf ("%llx\n", (u64)version);
switch (version) {
case GameVersion::JP_NOV_2020:
case GameVersion::CN_JUN_2023: break;

View File

@ -76,5 +76,8 @@ Init () {
// Use TLS v1.2
WRITE_MEMORY (ASLR (0x140369662), u8, 0x10);
// Disable SSLVerify
WRITE_MEMORY (ASLR (0x14034C181), u8, 0x00);
}
} // namespace patches::CN_JUN_2023