diff options
author | BobTheBob9 <for.oliver.kirkham@gmail.com> | 2022-12-06 23:41:58 +0000 |
---|---|---|
committer | BobTheBob9 <for.oliver.kirkham@gmail.com> | 2022-12-06 23:41:58 +0000 |
commit | 94a1b999b9c82af26c97b9822e77eb973291f7d2 (patch) | |
tree | a529d50dd889437dbe125b7775402486ba0ac362 | |
parent | 95bd8a28eda1fcf8abf58c133de7ee4ef12fb9e2 (diff) | |
download | NorthstarLauncher-94a1b999b9c82af26c97b9822e77eb973291f7d2.tar.gz NorthstarLauncher-94a1b999b9c82af26c97b9822e77eb973291f7d2.zip |
fix formatting
-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);
|