mirror of
https://github.com/minetest/minetest.git
synced 2024-11-04 23:03:46 +01:00
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
|
// Recreate textures
|
||||||
for (TextureInfo &ti : m_textureinfo_cache) {
|
for (TextureInfo &ti : m_textureinfo_cache) {
|
||||||
|
if (ti.name.empty())
|
||||||
|
continue; // Skip dummy entry
|
||||||
|
|
||||||
video::IImage *img = generateImage(ti.name);
|
video::IImage *img = generateImage(ti.name);
|
||||||
#if ENABLE_GLES
|
#if ENABLE_GLES
|
||||||
img = Align2Npot2(img, driver);
|
img = Align2Npot2(img, driver);
|
||||||
|
Loading…
Reference in New Issue
Block a user