]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - server.h
fix all the () problems, and make gcc warn for them
[xonotic/darkplaces.git] / server.h
index 0b21d37d17194c6ee56d0b12edd33e06dc1ed533..15bff56c54564405cd391ced0f2b7c780228ac5e 100644 (file)
--- a/server.h
+++ b/server.h
@@ -285,6 +285,10 @@ typedef struct client_s
 
        /// demo recording
        qfile_t *sv_demo_file;
+
+       // number of skipped entity frames
+       // if it exceeds a limit, an empty entity frame is sent
+       int num_skippedentityframes;
 } client_t;
 
 
@@ -533,7 +537,7 @@ void SV_SetupVM(void);
 void SV_VM_Begin(void);
 void SV_VM_End(void);
 
-const char *Host_TimingReport(); ///< for output in Host_Status_f
+const char *Host_TimingReport(void); ///< for output in Host_Status_f
 
 #endif