Skip to content

Instantly share code, notes, and snippets.

@InvoxiPlayGames
Created December 18, 2022 19:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save InvoxiPlayGames/b7ee7483876efe606f8ed4a92b7c780f to your computer and use it in GitHub Desktop.
Save InvoxiPlayGames/b7ee7483876efe606f8ed4a92b7c780f to your computer and use it in GitHub Desktop.
RB3Enhanced Loader Xenia Canary Patch
# This patch requires a build of Xenia Canary that supports writable_code_segments, and having it enabled in the config.
# (Not merged as of 18-Dec-2022, see: https://github.com/xenia-canary/xenia-canary/pull/100)
# Commit 28f3eb6 or later of RB3Enhanced recommended, due to removing the DEMO check.
title_name = "Rock Band 3"
title_id = "45410914"
hash = [
"464451C1022FFF32", # EA disc default.xex + TU5 applied
"02B607A811A4C291" # RB3DX modded pre-patched TU5 XEX
]
[[patch]]
name = "Load RB3Enhanced.dll"
author = "InvoxiPlayGames"
is_enabled = true
# Replaces a check in _start with a branch to LoadLibrary
[[patch.be32]]
address = 0x8283CD64
value = 0x3C6082C6 # lis r3, 0x82C64350@hi
[[patch.be32]]
address = 0x8283CD68
value = 0x60634350 # ori r3, r3, 0x82C64350@lo
[[patch.be32]]
address = 0x8283CD6C
value = 0x48007F0D # bl LoadLibrary
[[patch.string]]
address = 0x82C64350
value = "RB3Enhanced.dll"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment