From 8c6a9303cbb657770cd148f8d15d668a1045da63 Mon Sep 17 00:00:00 2001 From: Quentin Date: Thu, 12 Oct 2023 23:35:04 +0200 Subject: [PATCH] queue_dependency: remove outdated hardcoded dependency callers offsets, no more use since we have a game skeleton update hook now. (#2268) --- src/hooks/misc/queue_dependency.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/hooks/misc/queue_dependency.cpp b/src/hooks/misc/queue_dependency.cpp index 34b899e1..89d699ca 100644 --- a/src/hooks/misc/queue_dependency.cpp +++ b/src/hooks/misc/queue_dependency.cpp @@ -43,12 +43,6 @@ namespace big if (!is_address_in_game_region(f1) || (f2 && !is_address_in_game_region(f2))) return false; - // These must run, otherwise we'll at some point run out of sysMemSimpleAllocator memory. - if (caller_addr_offset == 0xAA03D4 || caller_addr_offset == 0xAA0A21 || caller_addr_offset == 0xAA0902) - { - return false; - } - return is_jump(f1) || is_jump(f2); }