diff --git a/revoice/src/sdk_util.cpp b/revoice/src/sdk_util.cpp index f51ee96..dd6b2cf 100644 --- a/revoice/src/sdk_util.cpp +++ b/revoice/src/sdk_util.cpp @@ -59,7 +59,7 @@ char *UTIL_VarArgs(char *format, ...) void UTIL_ServerPrintf(const char *fmt, ...) { // Check is null, test the demo started before than searches pointer to refs - if (&g_engfuncs == nullptr || g_engfuncs.pfnServerPrint == nullptr) + if (g_engfuncs.pfnServerPrint == nullptr) return; static char string[1024];