mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Engine: qualify functions as static where possible
This commit is contained in:
parent
ec9fc7d77f
commit
eee6aed033
@ -15,7 +15,7 @@ Host_Shutdown
|
||||
systems
|
||||
==================
|
||||
*/
|
||||
void Host_Shutdown()
|
||||
static void Host_Shutdown()
|
||||
{
|
||||
#ifndef DEDICATED
|
||||
DirectX_Shutdown();
|
||||
@ -31,7 +31,7 @@ Host_Status_PrintClient
|
||||
to console
|
||||
==================
|
||||
*/
|
||||
void Host_Status_PrintClient(CClient* client, bool bShowAddress, void (*print) (const char* fmt, ...))
|
||||
static void Host_Status_PrintClient(CClient* client, bool bShowAddress, void (*print) (const char* fmt, ...))
|
||||
{
|
||||
CNetChan* nci = client->GetNetChan();
|
||||
const char* state = "challenging";
|
||||
@ -70,7 +70,7 @@ DFS_InitializeFeatureFlagDefinitions
|
||||
flag definitions
|
||||
==================
|
||||
*/
|
||||
bool DFS_InitializeFeatureFlagDefinitions(const char* pszFeatureFlags)
|
||||
static bool DFS_InitializeFeatureFlagDefinitions(const char* pszFeatureFlags)
|
||||
{
|
||||
if (CommandLine()->CheckParm("-nodfs"))
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user