(svn r25081) -Fix [FS#5500]: Catch exception anonymously, if the exception content is not of interest.

This commit is contained in:
frosch 2013-03-11 17:45:23 +00:00
parent 553277dcd3
commit f800c826a8
1 changed files with 1 additions and 1 deletions

View File

@ -862,7 +862,7 @@ static void GfxInitSpriteCache()
try {
/* Try to allocate 50% more to make sure we do not allocate almost all available. */
_spritecache_ptr = reinterpret_cast<MemBlock *>(new byte[_allocated_sprite_cache_size + _allocated_sprite_cache_size / 2]);
} catch (std::bad_alloc &oom) {
} catch (std::bad_alloc &) {
_spritecache_ptr = NULL;
}