This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/src/hooks/protections/fragment_physics_crash.cpp

12 lines
220 B
C++
Raw Normal View History

#include "hooking.hpp"
namespace big
{
bool hooks::fragment_physics_crash_2(float* a1, float* a2)
{
if (!a1 || !a2)
return false;
return g_hooking->get_original<hooks::fragment_physics_crash_2>()(a1, a2);
}
}