From ab878eb312b089275b92b9854d866dfa92ef0d2d Mon Sep 17 00:00:00 2001 From: AzaezelX Date: Tue, 6 Apr 2021 14:54:53 -0500 Subject: [PATCH] report which profile usages are conflicting (was,is) --- Engine/source/gfx/gfxTextureManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/source/gfx/gfxTextureManager.cpp b/Engine/source/gfx/gfxTextureManager.cpp index db1a4135e..8341b1b6c 100644 --- a/Engine/source/gfx/gfxTextureManager.cpp +++ b/Engine/source/gfx/gfxTextureManager.cpp @@ -271,7 +271,7 @@ GFXTextureObject *GFXTextureManager::_lookupTexture( const char *hashName, const if (ret && (ret->mProfile->compareFlags(*profile))) return ret; else if (ret) - Con::warnf("GFXTextureManager::_lookupTexture: Cached texture %s has a different profile flag", hashName); + Con::warnf("GFXTextureManager::_lookupTexture: Cached texture %s has different profile flags: (%s,%s) ", hashName, ret->mProfile->getName().c_str(), profile->getName().c_str()); return NULL; }