*sigh* Turns out id didn't feel like fixing the bugs in progs so don't blat

out frame errors under normal circumstances.
This commit is contained in:
Bill Currie 2001-12-08 20:58:09 +00:00
parent e976211faf
commit b52606aed2

View file

@ -287,8 +287,9 @@ GL_GetAliasFrameVerts (int frame, aliashdr_t *paliashdr, entity_t *e)
vert_order_t *vo;
if ((frame >= paliashdr->mdl.numframes) || (frame < 0)) {
Con_Printf ("R_AliasSetupFrame: no such frame %d %s\n", frame,
currententity->model->name);
if (developer->int_val)
Con_Printf ("R_AliasSetupFrame: no such frame %d %s\n", frame,
currententity->model->name);
frame = 0;
}