aboutsummaryrefslogtreecommitdiff
path: root/primedev/dedicated/dedicated.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'primedev/dedicated/dedicated.cpp')
-rw-r--r--primedev/dedicated/dedicated.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/primedev/dedicated/dedicated.cpp b/primedev/dedicated/dedicated.cpp
index 5c679b76..eca9b9f1 100644
--- a/primedev/dedicated/dedicated.cpp
+++ b/primedev/dedicated/dedicated.cpp
@@ -35,11 +35,14 @@ struct CDedicatedExports
void Sys_Printf(CDedicatedExports* dedicated, const char* msg)
{
+ NOTE_UNUSED(dedicated);
spdlog::info("[DEDICATED SERVER] {}", msg);
}
void RunServer(CDedicatedExports* dedicated)
{
+ NOTE_UNUSED(dedicated);
+
spdlog::info("CDedicatedExports::RunServer(): starting");
spdlog::info(CommandLine()->GetCmdLine());
@@ -86,6 +89,8 @@ class DedicatedConsoleServerPresence : public ServerPresenceReporter
HANDLE consoleInputThreadHandle = NULL;
DWORD WINAPI ConsoleInputThread(PVOID pThreadParameter)
{
+ NOTE_UNUSED(pThreadParameter);
+
while (!g_pEngine || !g_pHostState || g_pHostState->m_iCurrentState != HostState_t::HS_RUN)
Sleep(1000);