From 73a8144e75163c216e470f7dcd87b76c779fef27 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Thu, 13 Jun 2024 05:18:52 +0300 Subject: [PATCH] engine: client: reduce console spam about not precached model to dev level 1 --- engine/client/cl_game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/cl_game.c b/engine/client/cl_game.c index 37801f4e..03360388 100644 --- a/engine/client/cl_game.c +++ b/engine/client/cl_game.c @@ -2376,7 +2376,7 @@ static int GAME_EXPORT CL_FindModelIndex( const char *m ) if( lasttimewarn < host.realtime ) { // tell user about problem (but don't spam console) - Con_Printf( S_ERROR "Could not find index for model %s: not precached\n", filepath ); + Con_DPrintf( S_ERROR "Could not find index for model %s: not precached\n", filepath ); lasttimewarn = host.realtime + 1.0f; }