queue_dependency: remove outdated hardcoded dependency callers offsets, no more use since we have a game skeleton update hook now. (#2268)

This commit is contained in:
Quentin 2023-10-12 23:35:04 +02:00 committed by GitHub
parent 7ad35bb3d7
commit 8c6a9303cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}