From 4ed29943080e2c20ec37455d5a760e680b15df74 Mon Sep 17 00:00:00 2001 From: Spoike Date: Tue, 26 Oct 2004 14:54:59 +0000 Subject: [PATCH] Added a few messages to let people know which models are being buggy. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@366 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/gl/gl_alias.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/engine/gl/gl_alias.c b/engine/gl/gl_alias.c index 065b6360a..40e1d801a 100644 --- a/engine/gl/gl_alias.c +++ b/engine/gl/gl_alias.c @@ -324,27 +324,27 @@ static void R_GAliasBuildMesh(mesh_t *mesh, galiasinfo_t *inf, int frame1, int f galiasgroup_t *g1, *g2; if (!inf->groups) { - Con_DPrintf("Model with no frames\n"); + Con_DPrintf("Model with no frames (%s)\n", currententity->model->name); return; } if (frame1 < 0) { - Con_DPrintf("Negative frame\n"); + Con_DPrintf("Negative frame (%s)\n", currententity->model->name); frame1 = 0; } if (frame2 < 0) { - Con_DPrintf("Negative frame\n"); + Con_DPrintf("Negative frame (%s)\n", currententity->model->name); frame2 = frame1; } if (frame1 >= inf->groups) { - Con_DPrintf("Too high frame\n"); + Con_DPrintf("Too high frame %i (%s)\n", frame1, currententity->model->name); frame1 = 0; } if (frame2 >= inf->groups) { - Con_DPrintf("Too high frame\n"); + Con_DPrintf("Too high frame %i (%s)\n", frame2, currententity->model->name); frame2 = frame1; } @@ -837,6 +837,8 @@ void R_DrawGAliasModel (entity_t *e) float tmatrix[3][4]; + currententity = e; + if (e->flags & Q2RF_VIEWERMODEL && e->keynum == cl.playernum[r_refdef.currentplayernum]+1) return;