From b81b3b3d01afd922db782a982ac6c7c197329166 Mon Sep 17 00:00:00 2001 From: Lioncache Date: Sat, 13 Dec 2025 22:32:32 -0500 Subject: [PATCH] CStringTable: Make unrecognized image type a warning This can be hit while creating a project. However this would be hit in release mode too, but wouldn't crash the application, because the trap signal is ifdef'd out. --- src/Core/Resource/StringTable/CStringTable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Resource/StringTable/CStringTable.cpp b/src/Core/Resource/StringTable/CStringTable.cpp index 57ce2e40..2612574f 100644 --- a/src/Core/Resource/StringTable/CStringTable.cpp +++ b/src/Core/Resource/StringTable/CStringTable.cpp @@ -327,7 +327,7 @@ std::unique_ptr CStringTable::BuildDependencyTree() const } else { - errorf("Unrecognized image type: %s", *ImageType); + warnf("Unrecognized image type: %s", *ImageType); continue; }