From 3dafa642d06f47fd413eaa5f62c654f38fb893c5 Mon Sep 17 00:00:00 2001 From: havoc Date: Sat, 4 Mar 2006 13:38:03 +0000 Subject: [PATCH] changed Q1BSP LoadEdges out of bounds error into just a warning git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6063 d7cf8633-e32d-0410-b094-e92efae38249 --- model_brush.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model_brush.c b/model_brush.c index ecbe1401..44aeb7ae 100644 --- a/model_brush.c +++ b/model_brush.c @@ -1768,7 +1768,7 @@ static void Mod_Q1BSP_LoadEdges(lump_t *l) out->v[1] = (unsigned short)LittleShort(in->v[1]); if (out->v[0] >= loadmodel->brushq1.numvertexes || out->v[1] >= loadmodel->brushq1.numvertexes) { - Host_Error("Mod_Q1BSP_LoadEdges: %s has invalid vertex indices in edge %i (vertices %i %i >= numvertices %i)\n", loadmodel->name, i, out->v[0], out->v[1], loadmodel->brushq1.numvertexes); + Con_Printf("Mod_Q1BSP_LoadEdges: %s has invalid vertex indices in edge %i (vertices %i %i >= numvertices %i)\n", loadmodel->name, i, out->v[0], out->v[1], loadmodel->brushq1.numvertexes); out->v[0] = 0; out->v[1] = 0; } -- 2.39.2