Add missing comment

Accidental deletion lol
This commit is contained in:
Amos 2021-04-17 04:55:30 -07:00
parent 683dcfe534
commit d5c4254433

View File

@ -119,6 +119,7 @@ void InstallHooks()
void RemoveHooks()
{
// Begin the detour transaction, to unhook the the process
DetourTransactionBegin();
DetourUpdateThread(GetCurrentThread());
@ -126,6 +127,7 @@ void RemoveHooks()
DetourDetach((LPVOID*)&SQVM_Print, &Hook_SQVM_Print);
DetourDetach((LPVOID*)&SQVM_LoadScript, &Hook_SQVM_LoadScript);
// Commit the transaction
DetourTransactionCommit();
}