From 835d2e4b5f92a5f9891fce8f958a4985cc53f1cf Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Fri, 12 Aug 2011 17:17:47 +0300 Subject: [PATCH] Removed assert if creating texture atlas image fails; cancel creating image instead. --- src/tile.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/tile.cpp b/src/tile.cpp index 9f6a6eb7..c93c0680 100644 --- a/src/tile.cpp +++ b/src/tile.cpp @@ -495,7 +495,13 @@ void TextureSource::buildMainAtlas() core::dimension2d 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."<