From b523ebd2a73777243717faf7d9c069e4fcd6a804 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 22 Sep 2008 07:30:37 +0000 Subject: [PATCH] - Removed debug output. - One line of code was accidentally deleted for last commit. SVN r1242 (trunk) --- src/thingdef/thingdef.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/thingdef/thingdef.cpp b/src/thingdef/thingdef.cpp index c15e11e0d..71fd99db2 100644 --- a/src/thingdef/thingdef.cpp +++ b/src/thingdef/thingdef.cpp @@ -396,7 +396,6 @@ static FActorInfo *CreateNewActor(FName typeName, FName parentName, FName replac } } - Printf("Defining %s\n", typeName.GetChars()); if (native) { 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()); break; } - + FinishActor(sc, info, bag); } sc.SetCMode (false); }