From 050a27e38723cc43f1c04803dfd6298943a4dcaf Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sun, 16 Apr 2023 15:51:51 +0200 Subject: [PATCH] Fix compiler warning on dedicated server Mark parameter as unused. --- r5dev/tier0/dbg.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/r5dev/tier0/dbg.cpp b/r5dev/tier0/dbg.cpp index c18e4ff4..8fde796c 100644 --- a/r5dev/tier0/dbg.cpp +++ b/r5dev/tier0/dbg.cpp @@ -219,6 +219,7 @@ bool LoggedFromClient(eDLL_T context) || context == eDLL_T::UI || context == eDLL_T::SCRIPT_UI || context == eDLL_T::NETCON); #else + NOTE_UNUSED(context); return false; #endif // !DEDICATED }