From f467e72ac264029880f1e0c48b04fead9b201732 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 20 Nov 2022 09:35:59 +0100 Subject: [PATCH] - only print texture resolve errors in debug builds. Otherwise this will print warnings when resolving content for different games. Needs to be done differently later, but right now the messages are needed for debugging. --- source/core/actorinfo.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/source/core/actorinfo.cpp b/source/core/actorinfo.cpp index 34d987f14..231d24210 100644 --- a/source/core/actorinfo.cpp +++ b/source/core/actorinfo.cpp @@ -248,7 +248,10 @@ void FActorInfo::ResolveTextures(const char* clsname, DCoreActor* defaults) for (unsigned i = 0; i < SpriteSet.Size(); i++) { SpriteSet[i] = TileFiles.tileForName(SpriteSetNames[i]); - if (SpriteSet[i] == -1) Printf("Unknown texture '%s' in sprite set for class %s\n", SpriteSetNames[i].GetChars(), clsname); + // This will print some noise in RR. Should later be restricted to user content. +#ifdef _DEBUG + if (SpriteSet[i] == -1) Printf(TEXTCOLOR_RED "Unknown texture '%s' in sprite set for class %s\n", SpriteSetNames[i].GetChars(), clsname); +#endif } if (SpriteSet.Size() > 0) { @@ -258,7 +261,9 @@ void FActorInfo::ResolveTextures(const char* clsname, DCoreActor* defaults) if (PicName.IsNotEmpty()) { defaults->spr.picnum = TileFiles.tileForName(PicName); - if (defaults->spr.picnum == -1) Printf("Unknown texture '%s' in pic for class %s\n", PicName.GetChars(), clsname); +#ifdef _DEBUG + if (defaults->spr.picnum == -1) Printf(TEXTCOLOR_RED "Unknown texture '%s' in pic for class %s\n", PicName.GetChars(), clsname); +#endif } SpriteSetNames.Reset(); PicName = "";