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.
This commit is contained in:
Lioncache
2025-12-13 22:32:32 -05:00
parent 78f3f451a2
commit b81b3b3d01

View File

@@ -327,7 +327,7 @@ std::unique_ptr<CDependencyTree> CStringTable::BuildDependencyTree() const
} }
else else
{ {
errorf("Unrecognized image type: %s", *ImageType); warnf("Unrecognized image type: %s", *ImageType);
continue; continue;
} }