mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-11-04 09:15:29 +01:00 
			
		
		
		
	Removed assert if creating texture atlas image fails; cancel creating image instead.
This commit is contained in:
		@@ -495,7 +495,13 @@ void TextureSource::buildMainAtlas()
 | 
			
		||||
	core::dimension2d<u32> atlas_dim(1024,1024);
 | 
			
		||||
	video::IImage *atlas_img =
 | 
			
		||||
			driver->createImage(video::ECF_A8R8G8B8, atlas_dim);
 | 
			
		||||
	assert(atlas_img);
 | 
			
		||||
	//assert(atlas_img);
 | 
			
		||||
	if(atlas_img == NULL)
 | 
			
		||||
	{
 | 
			
		||||
		dstream<<"TextureSource::buildMainAtlas(): Failed to create atlas "
 | 
			
		||||
				"image; not building texture atlas."<<std::endl;
 | 
			
		||||
		return;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	/*
 | 
			
		||||
		A list of stuff to add. This should contain as much of the
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user