Add hook error detection in input hooking

This commit is contained in:
Kawe Mazidjatari 2023-01-30 21:45:53 +01:00
parent fd5d09d843
commit 2e6381cfc6

View File

@ -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()