diff options
-rw-r--r-- | NorthstarDLL/rejectconnectionfixes.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/NorthstarDLL/rejectconnectionfixes.cpp b/NorthstarDLL/rejectconnectionfixes.cpp index 6e08195f..bfce2043 100644 --- a/NorthstarDLL/rejectconnectionfixes.cpp +++ b/NorthstarDLL/rejectconnectionfixes.cpp @@ -5,8 +5,10 @@ AUTOHOOK_INIT()
// this is called from when our connection is rejected, this is the only case we're hooking this for
+// clang-format off
AUTOHOOK(COM_ExplainDisconnection, engine.dll + 0x1342F0,
void,, (bool a1, const char* fmt, ...))
+// clang-format on
{
va_list va;
va_start(va, fmt);
|