From c02960e2cf91f29aae2593d10eb2fb3d29dbf7fe Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 16 Aug 2016 08:58:29 +0200 Subject: [PATCH] - added error message highlighting for one overlooked DECORATE error. --- src/thingdef/thingdef.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thingdef/thingdef.cpp b/src/thingdef/thingdef.cpp index 4878adfdf..dfc960627 100644 --- a/src/thingdef/thingdef.cpp +++ b/src/thingdef/thingdef.cpp @@ -343,7 +343,7 @@ static void FinishThingdef() if (!def) { - Printf("No ActorInfo defined for class '%s'\n", ti->TypeName.GetChars()); + Printf(TEXTCOLOR_RED "No ActorInfo defined for class '%s'\n", ti->TypeName.GetChars()); errorcount++; continue; }