That spam was annoying.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3271 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2009-07-14 15:05:56 +00:00
parent e7b05772b6
commit 294e82f158

View file

@ -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;
}