From 998c9d3acbf478b7aed30eb9cafb17da464a6e53 Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Wed, 16 Dec 2015 12:27:57 -0700 Subject: [PATCH] qbsp: add hint to use -bsp2 to fix "Too many vertices" error. --- qbsp/surfaces.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbsp/surfaces.c b/qbsp/surfaces.c index 629194c2..d3922893 100644 --- a/qbsp/surfaces.c +++ b/qbsp/surfaces.c @@ -607,7 +607,7 @@ MakeFaceEdges(mapentity_t *entity, node_t *headnode) } if (map.cTotal[LUMP_VERTEXES] > 65535 && options.BSPVersion == BSPVERSION) - Error("Too many vertices (%d > 65535)", map.cTotal[LUMP_VERTEXES]); + Error("Too many vertices (%d > 65535). Recompile with the \"-bsp2\" flag to lift this restriction.", map.cTotal[LUMP_VERTEXES]); surfedges->data = AllocMem(BSP_SURFEDGE, surfedges->count, true); faces->data = AllocMem(BSP_FACE, faces->count, true);