summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon Howard2008-09-24 18:59:56 +0000
committerSimon Howard2008-09-24 18:59:56 +0000
commit1301169ae84252e3d51a0bb1a1c19b107b85f5a7 (patch)
treedb8ef66fa01a52966bd46b058958548e64c35971 /src
parentcdcba6a922eb11b0829644ce590210a935297f7e (diff)
downloadchocolate-doom-1301169ae84252e3d51a0bb1a1c19b107b85f5a7.tar.gz
chocolate-doom-1301169ae84252e3d51a0bb1a1c19b107b85f5a7.tar.bz2
chocolate-doom-1301169ae84252e3d51a0bb1a1c19b107b85f5a7.zip
Comment out i_net calls for the time being, as networking is broken.
Subversion-branch: /branches/raven-branch Subversion-revision: 1272
Diffstat (limited to 'src')
-rw-r--r--src/heretic/d_net.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/heretic/d_net.c b/src/heretic/d_net.c
index fd728de4..264f0fb1 100644
--- a/src/heretic/d_net.c
+++ b/src/heretic/d_net.c
@@ -172,7 +172,9 @@ void HSendPacket(int node, int flags)
fprintf(debugfile, "\n");
}
+#ifdef I_NET
I_NetCmd();
+#endif
}
/*
@@ -201,7 +203,9 @@ boolean HGetPacket(void)
return false;
doomcom->command = CMD_GET;
+#ifdef I_NET
I_NetCmd();
+#endif
if (doomcom->remotenode == -1)
return false;
@@ -599,7 +603,9 @@ void D_CheckNetGame(void)
}
// I_InitNetwork sets doomcom and netgame
+#ifdef I_NET
I_InitNetwork();
+#endif
if (doomcom->id != DOOMCOM_ID)
I_Error("Doomcom buffer invalid!");
netbuffer = &doomcom->data;