]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - host.h
Rename host_t -> host_static_t.
[xonotic/darkplaces.git] / host.h
diff --git a/host.h b/host.h
index 1d553c2509fdf3dbe0ebf8c96adc27879a245729..4521f72b7983a50c57b60b436520613e91222f2e 100644 (file)
--- a/host.h
+++ b/host.h
@@ -16,7 +16,7 @@ typedef enum host_state_e
        host_active
 } host_state_t;
 
-typedef struct host_s
+typedef struct host_static_s
 {
        jmp_buf abortframe;
        int state;
@@ -38,9 +38,9 @@ typedef struct host_s
                void (*SV_SendCvar)(struct cmd_state_s *);
                void (*SV_Shutdown)(void);
        } hook;
-} host_t;
+} host_static_t;
 
-extern host_t host;
+extern host_static_t host;
 
 void Host_Main(void);
 void Host_Shutdown(void);