From: Mario Date: Mon, 11 Jan 2016 11:11:37 +0000 (+1000) Subject: Supress a warning X-Git-Tag: xonotic-v0.8.2~1250 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=c9d33ea2065289dd04e174c8a399a0b2de112048;p=xonotic%2Fxonotic-data.pk3dir.git Supress a warning --- diff --git a/qcsrc/client/csqcmodel_hooks.qc b/qcsrc/client/csqcmodel_hooks.qc index b9ceb3893..8f8d65c98 100644 --- a/qcsrc/client/csqcmodel_hooks.qc +++ b/qcsrc/client/csqcmodel_hooks.qc @@ -367,7 +367,7 @@ int CSQCPlayer_FallbackFrame(entity this, int f) case 29: return 4; // anim_duckwalkbackright -> anim_duckwalk case 30: return 4; // anim_duckwalkbackleft -> anim_duckwalk } - LOG_INFOF("Frame %d missing in model %s, and we have no fallback - FAIL!\n", f, this.model); + LOG_DEBUGF("Frame %d missing in model %s, and we have no fallback - FAIL!\n", f, this.model); return f; } void CSQCPlayer_FallbackFrame_Apply(entity this)