]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
Hide no such frame warning if developer is off
authorlordhavoc <lordhavoc@d7cf8633-e32d-0410-b094-e92efae38249>
Thu, 14 Mar 2002 19:46:31 +0000 (19:46 +0000)
committerlordhavoc <lordhavoc@d7cf8633-e32d-0410-b094-e92efae38249>
Thu, 14 Mar 2002 19:46:31 +0000 (19:46 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@1649 d7cf8633-e32d-0410-b094-e92efae38249

r_lerpanim.c

index 5fb248f78cfe0797209f40997e82374c0e324e24..83c2b432ef3870a4b9609cb32f18cad6409ef2d2 100644 (file)
@@ -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;
        }