Created
December 18, 2022 19:43
-
-
Save InvoxiPlayGames/b7ee7483876efe606f8ed4a92b7c780f to your computer and use it in GitHub Desktop.
RB3Enhanced Loader Xenia Canary Patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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