From 915db28d5e3674183b6ca5803df86be2bc8acd2b Mon Sep 17 00:00:00 2001 From: Fabian Greffrath Date: Tue, 12 Dec 2023 11:03:51 +0100 Subject: [PATCH] wait, no nodes is actually possible (single subsector) --- src/p_extnodes.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/p_extnodes.c b/src/p_extnodes.c index f5e72c3b..20b88b6f 100644 --- a/src/p_extnodes.c +++ b/src/p_extnodes.c @@ -147,10 +147,6 @@ mapformat_t P_CheckMapFormat(int lumpnum) if ((b = lumpnum + ML_NODES) < numlumps && (nodes = W_CacheLumpNum(b, PU_STATIC))) { - if (W_LumpLength(b) < sizeof(mapnode_t)) - { - format = MFMT_UNSUPPORTED; - } if (W_LumpLength(b) > 8) { if (!memcmp(nodes, "xNd4\0\0\0\0", 8))