diff options
author | robinsch <robinsch@users.noreply.github.com> | 2024-02-12 19:51:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-12 19:51:41 +0100 |
commit | 220477f77193d3486966e807e34d667ed96091ca (patch) | |
tree | 5463b82ec1a086f0251947301933b0ac05366541 | |
parent | 519618c0178fdb2f3cdb72e63431fd1c2beed9ac (diff) |
-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 02385ae..23675ac 100644 --- a/Patcher/Patcher.cpp +++ b/Patcher/Patcher.cpp @@ -92,7 +92,7 @@ int main(int argc, char** argv) // patch mail request timeout // you no longer need to wait 60 seconds or relog to receive new mail - write_pos(0x6D899, { 0x05, 0x01, 0x00, 0x00, 0x00 }); + write_pos(0x16D899, { 0x05, 0x01, 0x00, 0x00, 0x00 }); // patch area trigger timer to be more precise (250ms -> 50ms) write_pos<uint8_t>(0x2DB241, 50); |