From c66d65f4aea44ec2a61395ac46a590d965745b7c Mon Sep 17 00:00:00 2001 From: lordhavoc Date: Thu, 14 Mar 2002 19:46:31 +0000 Subject: [PATCH] Hide no such frame warning if developer is off git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@1649 d7cf8633-e32d-0410-b094-e92efae38249 --- r_lerpanim.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/r_lerpanim.c b/r_lerpanim.c index 5fb248f7..83c2b432 100644 --- a/r_lerpanim.c +++ b/r_lerpanim.c @@ -16,13 +16,13 @@ void R_LerpAnimation(entity_render_t *r) if (r->frame1 >= numframes) { - Con_Printf ("CL_LerpAnimation: no such frame %d\n", r->frame1); + Con_DPrintf ("CL_LerpAnimation: no such frame %d\n", r->frame1); r->frame1 = 0; } if (r->frame2 >= numframes) { - Con_Printf ("CL_LerpAnimation: no such frame %d\n", r->frame2); + Con_DPrintf ("CL_LerpAnimation: no such frame %d\n", r->frame2); r->frame2 = 0; } -- 2.39.2