Skip to content

Commit

Permalink
GE: remove "exit to dashboard" menu option
Browse files Browse the repository at this point in the history
  • Loading branch information
emoose committed Feb 18, 2021
1 parent 505630c commit d9f9792
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/xenia/emulator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -713,6 +713,12 @@ X_STATUS Emulator::CompleteLaunch(const std::filesystem::path& path,
patch_addr(0x820A45D0, 0x4800003C);
patch_addr(0x820A46D4, 0x4800003C);

// Hide "return to arcade" menu option
patch_addr(0x820F7750, 0x2F1E0007);
patch_addr(0x820F7D04, 0x2F1A0007);
// Prevent "return to arcade" code from being executed
patch_addr(0x820F7780, 0x2B0A0003);

if (cvars::remove_blur) {
// Patch out N64 blur
// Source:
Expand Down

0 comments on commit d9f9792

Please sign in to comment.