Donetsk/hook_lib/ddl.cpp
2023-10-24 16:16:45 +02:00

9 lines
288 B
C++

#include "ddl.h"
bool DDL_SetUInt_Detour(const DDLState* state, DDLContext* ddlContext, unsigned int val)
{
//ddlContext->obfuscated = false;
//printf("%p - %p\n", state->offset, (uintptr_t)(ddlContext->buff) + state->offset);
return ddl_setuint.stub<bool>(state, ddlContext, val);
}