- Removed debug output.

- One line of code was accidentally deleted for last commit.

SVN r1242 (trunk)
This commit is contained in:
Christoph Oelckers 2008-09-22 07:30:37 +00:00
parent 8a79985f46
commit b523ebd2a7

View file

@ -396,7 +396,6 @@ static FActorInfo *CreateNewActor(FName typeName, FName parentName, FName replac
} }
} }
Printf("Defining %s\n", typeName.GetChars());
if (native) if (native)
{ {
ti = (PClass*)PClass::FindClass(typeName); ti = (PClass*)PClass::FindClass(typeName);
@ -578,7 +577,7 @@ void ParseActor(FScanner &sc)
sc.ScriptError("Unexpected '%s' in definition of '%s'", sc.String, bag.Info->Class->TypeName.GetChars()); sc.ScriptError("Unexpected '%s' in definition of '%s'", sc.String, bag.Info->Class->TypeName.GetChars());
break; break;
} }
FinishActor(sc, info, bag);
} }
sc.SetCMode (false); sc.SetCMode (false);
} }