forked from Mirrorlandia_minetest/minetest
Fix "Could not create ITexture, texture needs to have a non-empty name" warning
This commit is contained in:
parent
2628316842
commit
9f85862b7c
@ -762,6 +762,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);
|
||||
|
Loading…
Reference in New Issue
Block a user