diff options
Diffstat (limited to 'NorthstarDLL/host.cpp')
-rw-r--r-- | NorthstarDLL/host.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/NorthstarDLL/host.cpp b/NorthstarDLL/host.cpp index 74dad785..e8cb9bdc 100644 --- a/NorthstarDLL/host.cpp +++ b/NorthstarDLL/host.cpp @@ -7,8 +7,10 @@ AUTOHOOK_INIT() +// clang-format off AUTOHOOK(Host_Init, engine.dll + 0x155EA0, -void,, (bool bDedicated)) +void, __fastcall, (bool bDedicated)) +// clang-format on { spdlog::info("Host_Init()"); Host_Init(bDedicated); |