From 2bcf7e04c34534e376d1b04001b3dec71a2348cb Mon Sep 17 00:00:00 2001 From: Spoike Date: Sat, 20 Nov 2004 01:10:18 +0000 Subject: [PATCH] restructured model loading to fail to load rather than error if given an unrecognised model. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@491 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/gl/gl_model.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/engine/gl/gl_model.c b/engine/gl/gl_model.c index e7fea9251..70b7ad775 100644 --- a/engine/gl/gl_model.c +++ b/engine/gl/gl_model.c @@ -567,6 +567,8 @@ model_t *GLMod_LoadModel (model_t *mod, qboolean crash) } #endif +couldntload: + if (crash) Host_EndGame ("Mod_NumForName: %s not found", mod->name); @@ -645,9 +647,13 @@ model_t *GLMod_LoadModel (model_t *mod, qboolean crash) break; #endif - default: + case 30: //hl + case 29: //q1 GLMod_LoadBrushModel (mod, buf); break; + default: + Con_Printf("Unrecognised model format %i\n", LittleLong(*(unsigned *)buf)); + goto couldntload; } R_DefaultTrail(mod);