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:
parent
e7b05772b6
commit
294e82f158
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
//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)
|
static int PNULL_ParticleTypeForName(char *name)
|
||||||
{
|
{
|
||||||
Con_Printf("P_ParticleTypeForName %s\n", name);
|
Con_DPrintf("P_ParticleTypeForName %s\n", name);
|
||||||
return P_INVALID;
|
return P_INVALID;
|
||||||
}
|
}
|
||||||
|
|
||||||
//returns a valid effect if its existance is known, even if simply referenced. This should be phased out.
|
//returns a valid effect if its existance is known, even if simply referenced. This should be phased out.
|
||||||
static int PNULL_FindParticleType(char *name)
|
static int PNULL_FindParticleType(char *name)
|
||||||
{
|
{
|
||||||
Con_Printf("P_FindParticleType %s\n", name);
|
Con_DPrintf("P_FindParticleType %s\n", name);
|
||||||
return P_INVALID;
|
return P_INVALID;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue