diff options
author | robinsch <hello@robinsch.com> | 2024-02-11 08:58:30 +0100 |
---|---|---|
committer | robinsch <hello@robinsch.com> | 2024-02-11 08:58:30 +0100 |
commit | 519618c0178fdb2f3cdb72e63431fd1c2beed9ac (patch) | |
tree | 30c335e4f2df5432897c78bd7f9fa41ae4ed2da0 /Patcher/Patcher.cpp | |
parent | 28fb36b74beba83c0808cf23aabe870e401b06cb (diff) |
Fixed incorrect address for area trigger fix
Diffstat (limited to 'Patcher/Patcher.cpp')
-rw-r--r-- | Patcher/Patcher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Patcher/Patcher.cpp b/Patcher/Patcher.cpp index 4e53c1c..02385ae 100644 --- a/Patcher/Patcher.cpp +++ b/Patcher/Patcher.cpp @@ -95,7 +95,7 @@ int main(int argc, char** argv) write_pos(0x6D899, { 0x05, 0x01, 0x00, 0x00, 0x00 }); // patch area trigger timer to be more precise (250ms -> 50ms) - write_pos<uint8_t>(0x1DB241, 50); + write_pos<uint8_t>(0x2DB241, 50); // Return of "The Blue Moon" write_pos(0x5CFBC0, { 0xC7, 0x05, 0x74, 0x8E, 0xD3, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xC3 }); |