diff options
author | robinsch <robinsch@users.noreply.github.com> | 2024-02-08 07:28:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-08 07:28:44 +0100 |
commit | f120b219d3cd7d1190f3f68a0e5476bfcfedd125 (patch) | |
tree | 7c01e5cdd889bc1055c1ef9d82bda9bdd841e41a /Patcher/Patcher.cpp | |
parent | 3007e0315620fa2ed2c0054b056d22cccb295971 (diff) |
Fixed address for .data patches
Diffstat (limited to 'Patcher/Patcher.cpp')
-rw-r--r-- | Patcher/Patcher.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Patcher/Patcher.cpp b/Patcher/Patcher.cpp index 2fff02f..0fef957 100644 --- a/Patcher/Patcher.cpp +++ b/Patcher/Patcher.cpp @@ -96,8 +96,8 @@ int main(int argc, char** argv) // The Return of the "Blue Moon" write_pos_n(0x2F1DB9, 0x90, 12); - write_pos<uint32_t>(0x838274, /*CImVector*/ 0xFFFFFFFF); - write_pos<float>(0x838284, 1.0f); + write_pos<uint32_t>(0x938E74, /*CImVector*/ 0xFFFFFFFF); + write_pos<float>(0x938E84, 1.0f); // prevents sun and moon color from being affected by LightParams.dbc // better support for planet colors when using darker night mods |