From 294e82f158c63173189ddb3b407a8a23169057e4 Mon Sep 17 00:00:00 2001 From: Spoike Date: Tue, 14 Jul 2009 15:05:56 +0000 Subject: [PATCH] That spam was annoying. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3271 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/p_null.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/client/p_null.c b/engine/client/p_null.c index adc8fb315..4cf548186 100644 --- a/engine/client/p_null.c +++ b/engine/client/p_null.c @@ -6,14 +6,14 @@ //obtains an index for the name, even if it is unknown (one can be loaded after. will only fail if the effect limit is reached) static int PNULL_ParticleTypeForName(char *name) { - Con_Printf("P_ParticleTypeForName %s\n", name); + Con_DPrintf("P_ParticleTypeForName %s\n", name); return P_INVALID; } //returns a valid effect if its existance is known, even if simply referenced. This should be phased out. static int PNULL_FindParticleType(char *name) { - Con_Printf("P_FindParticleType %s\n", name); + Con_DPrintf("P_FindParticleType %s\n", name); return P_INVALID; }