From 2cdb92e63b42dbba94433f815159c3f0e1515d9e Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Sat, 25 Jun 2016 05:24:11 +0000 Subject: [PATCH] just remove the if0'ed part.. git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1320 af15c1b1-3010-417e-b628-4374ebc0bcbd --- Quake/host_cmd.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Quake/host_cmd.c b/Quake/host_cmd.c index fa367738..b8ff444c 100644 --- a/Quake/host_cmd.c +++ b/Quake/host_cmd.c @@ -1226,10 +1226,6 @@ void Host_Loadgame_f (void) else { // parse an edict ent = EDICT_NUM(entnum); - #if 0 /* EDICT_NUM() checks this already */ - if (entnum >= sv.max_edicts) - Host_Error ("Loadgame: no free edicts (max_edicts is %i)", sv.max_edicts); - #endif if (entnum < sv.num_edicts) { ent->free = false; memset (&ent->v, 0, progs->entityfields * 4);