From: havoc Date: Sat, 11 Mar 2006 17:23:09 +0000 (+0000) Subject: init host_framecount to 0, just a cleanup X-Git-Tag: xonotic-v0.1.0preview~4216 X-Git-Url: http://git.xonotic.org/?a=commitdiff_plain;h=daef1775652cd8cad2ba03cbb61396b1135f99e1;hp=dc34cd9cda55ec4bea5de8b969e5a9491374578b;p=xonotic%2Fdarkplaces.git init host_framecount to 0, just a cleanup git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6102 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/host.c b/host.c index 7d1631db..360143d3 100644 --- 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;