Reenable can_catch hook for android64 (fully fixes exceptions)

This commit is contained in:
altalk23 2024-06-22 14:01:02 +03:00
parent 8cfe1aac74
commit cfb682ef79

View file

@ -2,7 +2,7 @@
using namespace geode::prelude;
#ifdef GEODE_IS_ANDROID32
#ifdef GEODE_IS_ANDROID
// replaces https://github.com/llvm-mirror/libcxxabi/blob/master/src/private_typeinfo.cpp#L213
// this is the function that checks if a type can catch an exception
@ -31,7 +31,7 @@ $execute {
auto tiVtable = typeinfo->m_typeinfoVtable;
auto hookAddr = tiVtable->m_vtable[4]; // 5th entry is can_catch
(void)Mod::get()->hook(hookAddr, &canCatchImpl, "__class_type_info::can_catch");
(void)Mod::get()->hook(hookAddr, &canCatchImpl, "__cxxabiv1::__class_type_info::can_catch");
}
#endif