summaryrefslogtreecommitdiff
path: root/src/heretic/d_net.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/heretic/d_net.c')
-rw-r--r--src/heretic/d_net.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/heretic/d_net.c b/src/heretic/d_net.c
index 4a67ad19..fb4240bc 100644
--- a/src/heretic/d_net.c
+++ b/src/heretic/d_net.c
@@ -521,7 +521,7 @@ void D_ArbitrateNetStart(void)
continue;
if (netbuffer->checksum & NCMD_SETUP)
{
- if (netbuffer->player != VERSION)
+ if (netbuffer->player != HERETIC_VERSION)
I_Error
("Different DOOM versions cannot play a net game!");
startskill = netbuffer->retransmitfrom & 15;
@@ -553,7 +553,7 @@ void D_ArbitrateNetStart(void)
netbuffer->retransmitfrom |= 0x10;
//netbuffer->starttic = startepisode * 64 + startmap;
netbuffer->starttic = (startepisode << 4) + startmap;
- netbuffer->player = VERSION;
+ netbuffer->player = HERETIC_VERSION;
netbuffer->numtics = 0;
HSendPacket(i, NCMD_SETUP);
}