- disabled debug messages.

SVN r1335 (trunk)
This commit is contained in:
Christoph Oelckers 2008-12-30 14:24:55 +00:00
parent f8c38e5f54
commit aeaf94c1c4
1 changed files with 2 additions and 2 deletions

View File

@ -260,7 +260,7 @@ PClass *PClass::CreateDerivedClass (FName name, unsigned int size)
{
I_Error("%s must inherit from %s but doesn't.", name.GetChars(), type->ParentClass->TypeName.GetChars());
}
Printf("Defining placeholder class %s\n", name.GetChars());
DPrintf("Defining placeholder class %s\n", name.GetChars());
notnew = true;
}
else
@ -338,7 +338,7 @@ const PClass *PClass::FindClassTentative (FName name)
}
}
PClass *type = new PClass;
Printf("Creating placeholder class %s : %s\n", name.GetChars(), TypeName.GetChars());
DPrintf("Creating placeholder class %s : %s\n", name.GetChars(), TypeName.GetChars());
type->TypeName = name;
type->ParentClass = this;