1
0
mirror of https://github.com/Mauler125/r5sdk.git synced 2025-02-09 19:15:03 +01:00

Fix compiler warning on dedicated server

Mark parameter as unused.
This commit is contained in:
Kawe Mazidjatari 2023-04-16 15:51:51 +02:00
parent 2caede5099
commit 050a27e387

@ -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
}