mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-13 16:07:40 +00:00
- disabled debug messages.
SVN r1335 (trunk)
This commit is contained in:
parent
f8c38e5f54
commit
aeaf94c1c4
1 changed files with 2 additions and 2 deletions
|
@ -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());
|
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;
|
notnew = true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -338,7 +338,7 @@ const PClass *PClass::FindClassTentative (FName name)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
PClass *type = new PClass;
|
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->TypeName = name;
|
||||||
type->ParentClass = this;
|
type->ParentClass = this;
|
||||||
|
|
Loading…
Reference in a new issue