summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon Howard2009-06-07 01:26:45 +0000
committerSimon Howard2009-06-07 01:26:45 +0000
commit2df46868ae68060f3eb681a5dd1943ee522a88b4 (patch)
treefec36ad7f6a45325cd8fda8370d940d7f8d3a166 /src
parent8a262fb95d8f335cf7930a8ae667fe5e01552cf4 (diff)
downloadchocolate-doom-2df46868ae68060f3eb681a5dd1943ee522a88b4.tar.gz
chocolate-doom-2df46868ae68060f3eb681a5dd1943ee522a88b4.tar.bz2
chocolate-doom-2df46868ae68060f3eb681a5dd1943ee522a88b4.zip
Fix compile with FEATURE_MULTIPLAYER disabled.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1555
Diffstat (limited to 'src')
-rw-r--r--src/d_net.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/d_net.c b/src/d_net.c
index 4e87a813..f5890769 100644
--- a/src/d_net.c
+++ b/src/d_net.c
@@ -429,6 +429,7 @@ static int GetLowTic(void)
int i;
int lowtic;
+#ifdef FEATURE_MULTIPLAYER
if (net_client_connected)
{
lowtic = INT_MAX;
@@ -443,6 +444,7 @@ static int GetLowTic(void)
}
}
else
+#endif
{
lowtic = maketic;
}