Fix safe_func
This commit is contained in:
parent
eb69cd9a03
commit
c294aba7ae
@ -87,8 +87,7 @@ namespace gsc
|
|||||||
void safe_func()
|
void safe_func()
|
||||||
{
|
{
|
||||||
static utils::hook::detour hook;
|
static utils::hook::detour hook;
|
||||||
|
static const auto stub = []()
|
||||||
const auto stub = []()
|
|
||||||
{
|
{
|
||||||
__try
|
__try
|
||||||
{
|
{
|
||||||
@ -101,7 +100,7 @@ namespace gsc
|
|||||||
};
|
};
|
||||||
|
|
||||||
const auto ptr = rva + 0_b;
|
const auto ptr = rva + 0_b;
|
||||||
hook.create(ptr, stub);
|
hook.create(reinterpret_cast<void*>(ptr), stub);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user