Fix "Could not create ITexture, texture needs to have a non-empty name" warning

master
sfan5 2021-09-22 18:35:40 +02:00 committed by MoNTE48
parent d6b01ab8ef
commit 667f1f2a2e
1 changed files with 3 additions and 0 deletions

View File

@ -773,6 +773,9 @@ void TextureSource::rebuildImagesAndTextures()
// Recreate textures
for (TextureInfo &ti : m_textureinfo_cache) {
if (ti.name.empty())
continue; // Skip dummy entry
video::IImage *img = generateImage(ti.name);
#if ENABLE_GLES
img = Align2Npot2(img, driver);