From e11e8a361ed0ddaf6832626a79a32642cb748ce9 Mon Sep 17 00:00:00 2001 From: Jan Date: Tue, 31 Dec 2024 15:54:04 +0100 Subject: [PATCH] chore: adjust message when no asset creator could create asset --- src/ObjLoading/Asset/AssetCreationContext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ObjLoading/Asset/AssetCreationContext.cpp b/src/ObjLoading/Asset/AssetCreationContext.cpp index a82c51e4..77da6e65 100644 --- a/src/ObjLoading/Asset/AssetCreationContext.cpp +++ b/src/ObjLoading/Asset/AssetCreationContext.cpp @@ -114,7 +114,7 @@ XAssetInfoGeneric* AssetCreationContext::LoadDependencyGeneric(const asset_type_ } else { - std::cerr << std::format("Could not find creator for asset \"{}\" of type \"{}\"\n", assetName, *m_zone->m_pools->GetAssetTypeName(assetType)); + std::cerr << std::format("Missing asset \"{}\" of type \"{}\"\n", assetName, *m_zone->m_pools->GetAssetTypeName(assetType)); } return nullptr;