summaryrefslogtreecommitdiff
path: root/src/hexen/d_net.c
diff options
context:
space:
mode:
authorSimon Howard2008-10-08 18:47:13 +0000
committerSimon Howard2008-10-08 18:47:13 +0000
commitd4d0f9945cefdb86241b5bd095e82ddbfca0e134 (patch)
tree177a0c2415b26b3b16077993399760de417190c7 /src/hexen/d_net.c
parentdc7d72797f1d6810b8ba2f8472f6828f1f714df6 (diff)
downloadchocolate-doom-d4d0f9945cefdb86241b5bd095e82ddbfca0e134.tar.gz
chocolate-doom-d4d0f9945cefdb86241b5bd095e82ddbfca0e134.tar.bz2
chocolate-doom-d4d0f9945cefdb86241b5bd095e82ddbfca0e134.zip
Switch configuration file code to common configuration file code, and
remove old code. Subversion-branch: /branches/raven-branch Subversion-revision: 1338
Diffstat (limited to 'src/hexen/d_net.c')
-rw-r--r--src/hexen/d_net.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hexen/d_net.c b/src/hexen/d_net.c
index fec03c8d..d1a7c376 100644
--- a/src/hexen/d_net.c
+++ b/src/hexen/d_net.c
@@ -653,7 +653,7 @@ void D_ArbitrateNetStart(void)
continue;
if (netbuffer->checksum & NCMD_SETUP && netbuffer->starttic < 64)
{
- if (netbuffer->player != VERSION)
+ if (netbuffer->player != HEXEN_VERSION)
I_Error
("Different HEXEN versions cannot play a net game!");
startskill = netbuffer->retransmitfrom & 15;
@@ -682,7 +682,7 @@ void D_ArbitrateNetStart(void)
if (respawnparm)
netbuffer->retransmitfrom |= 0x10;
netbuffer->starttic = startmap & 0x3f;
- netbuffer->player = VERSION;
+ netbuffer->player = HEXEN_VERSION;
netbuffer->numtics = 0;
HSendPacket(i, NCMD_SETUP);
}