Browse Source

Fix dedicated server build

pull/2/head
mittorn 7 years ago
parent
commit
0c903c1e56
  1. 6
      engine/common/dedicated.c
  2. 3
      engine/common/host.c

6
engine/common/dedicated.c

@ -84,7 +84,7 @@ const char *svc_strings[256] =
"svc_unused63", "svc_unused63",
}; };
qboolean CL_Active( void ) int CL_Active( void )
{ {
return false; return false;
} }
@ -284,12 +284,12 @@ void S_StopAllSounds( qboolean ambient )
} }
void Con_NPrintf( int idx, char *fmt, ... ) void Con_NPrintf( int idx, const char *fmt, ... )
{ {
} }
void Con_NXPrintf( struct con_nprint_s *info, char *fmt, ... ) void Con_NXPrintf( struct con_nprint_s *info, const char *fmt, ... )
{ {
} }

3
engine/common/host.c

@ -631,6 +631,7 @@ void Host_InitCommon( int argc, char **argv, const char *progname, qboolean bCha
char dev_level[4]; char dev_level[4];
int developer = 0; int developer = 0;
const char *baseDir; const char *baseDir;
char ticrate[16];
// some commands may turn engine into infinite loop, // some commands may turn engine into infinite loop,
// e.g. xash.exe +game xash -game xash // e.g. xash.exe +game xash -game xash
@ -833,7 +834,7 @@ void Host_InitCommon( int argc, char **argv, const char *progname, qboolean bCha
if( Sys_GetParmFromCmdLine( "-sys_ticrate", ticrate )) if( Sys_GetParmFromCmdLine( "-sys_ticrate", ticrate ))
{ {
fps = bound( MIN_FPS, atof( ticrate ), MAX_FPS ); double fps = bound( MIN_FPS, atof( ticrate ), MAX_FPS );
Cvar_SetValue( "sys_ticrate", fps ); Cvar_SetValue( "sys_ticrate", fps );
} }

Loading…
Cancel
Save