summaryrefslogtreecommitdiff
path: root/src/doom
diff options
context:
space:
mode:
Diffstat (limited to 'src/doom')
-rw-r--r--src/doom/d_net.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doom/d_net.c b/src/doom/d_net.c
index e43ac4b2..e30ead83 100644
--- a/src/doom/d_net.c
+++ b/src/doom/d_net.c
@@ -430,12 +430,13 @@ static boolean PlayersInGame(void)
static int GetLowTic(void)
{
- int i;
int lowtic;
#ifdef FEATURE_MULTIPLAYER
if (net_client_connected)
{
+ int i;
+
lowtic = INT_MAX;
for (i=0; i<MAXPLAYERS; ++i)