mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Add hook error detection in input hooking
This commit is contained in:
parent
fd5d09d843
commit
2e6381cfc6
@ -99,7 +99,12 @@ void Input_Init()
|
||||
DetourAttach(&(LPVOID&)g_oShowCursor, (PBYTE)HShowCursor);
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
DetourTransactionCommit();
|
||||
HRESULT hr = DetourTransactionCommit();
|
||||
if (hr != NO_ERROR)
|
||||
{
|
||||
// Failed to hook into the process, terminate
|
||||
Error(eDLL_T::COMMON, 0xBAD0C0DE, "Failed to detour process: error code = %08x\n", hr);
|
||||
}
|
||||
}
|
||||
|
||||
void Input_Shutdown()
|
||||
|
Loading…
x
Reference in New Issue
Block a user