]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
init host_framecount to 0, just a cleanup
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sat, 11 Mar 2006 17:23:09 +0000 (17:23 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sat, 11 Mar 2006 17:23:09 +0000 (17:23 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6102 d7cf8633-e32d-0410-b094-e92efae38249

host.c

diff --git a/host.c b/host.c
index 7d1631db0020026615dc04264d2767b6f37c8958..360143d35413bf509fe9a6520b2e059523b7c0dc 100644 (file)
--- a/host.c
+++ b/host.c
@@ -39,7 +39,7 @@ Memory is cleared / released when a server or client begins, not when they end.
 
 // how many frames have occurred
 // (checked by Host_Error and Host_SaveConfig_f)
-int host_framecount;
+int host_framecount = 0;
 // LordHavoc: set when quit is executed
 qboolean host_shuttingdown = false;