Skip to content
This repository was archived by the owner on Aug 4, 2023. It is now read-only.

Commit 390d893

Browse files
committed
GU 14 Support
1 parent 96fedb2 commit 390d893

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

libs/anno-api/src/random_game_functions.cc

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,22 @@ bool FindAddresses()
298298

299299
ADDRESSES[READ_INT64_FROM_XML_NODE] = {
300300
[](std::optional<std::string_view> game_file) {
301-
// Game Upate 13.2+
301+
// Game Update 14
302+
try {
303+
auto match =
304+
meow_hook::pattern("E8 ? ? ? ? 66 41 83 FC ? 77 0A", game_file).count(1).get(0);
305+
if (game_file) {
306+
match = match.adjust(RebaseFileOffsetToMemoryAddess(
307+
match.as<uintptr_t>()
308+
- reinterpret_cast<intptr_t>(game_file->data()))
309+
- match.as<uintptr_t>());
310+
}
311+
return match.extract_call();
312+
}
313+
catch (...) {
314+
}
315+
316+
// Game Update 13.2+
302317
try {
303318
auto match =
304319
meow_hook::pattern("E8 ? ? ? ? 4C 8D 76 40", game_file).count(1).get(0);

libs/python35/src/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// clang-format off
44
#define VERSION_MAJOR 0
55
#define VERSION_MINOR 8
6-
#define VERSION_REVISION 5
6+
#define VERSION_REVISION 6
77

88
#define STRINGIFY_(s) #s
99
#define STRINGIFY(s) STRINGIFY_(s)

0 commit comments

Comments
 (0)