Skip to content

Commit

Permalink
Merge branch 'praydog:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyhodge authored Dec 3, 2023
2 parents 22ebf80 + 6a8221f commit a006caf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/mods/IntegrityCheckBypass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,14 @@ void IntegrityCheckBypass::ignore_application_entries() {
}

void IntegrityCheckBypass::immediate_patch_re8() {
// Apparently patching this in SF6 causes some bugs like chat not showing up and being unable to view replays.
// Disabling it for now as the game still seems to work fine without it.
#ifdef SF6
if (true) {
return;
}
#endif

// We have to immediately patch this at startup in RE8 unlike MHRise
// because the game immediately starts checking the integrity of the executable
// on the first execution of this callback, unlike MHRise which was delayed.
Expand Down

0 comments on commit a006caf

Please sign in to comment.