From 45f076bd429c40d81607f43837f1cc571f3f6be0 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 10 Feb 2013 00:49:50 +0300 Subject: Improve a bit image load speed. --- src/resources/resourcemanager.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/resources/resourcemanager.cpp') diff --git a/src/resources/resourcemanager.cpp b/src/resources/resourcemanager.cpp index 542a96a9e..bd739644c 100644 --- a/src/resources/resourcemanager.cpp +++ b/src/resources/resourcemanager.cpp @@ -1012,7 +1012,15 @@ SDL_Surface *ResourceManager::loadSDLSurface(const std::string &filename) const { SDL_Surface *surface = nullptr; if (SDL_RWops *const rw = PHYSFSRWOPS_openRead(filename.c_str())) - surface = IMG_Load_RW(rw, 1); + { + if (!IMG_isPNG(rw)) + { + logger->log("Error, image is not png: " + filename); + return nullptr; + } + surface = IMG_LoadPNG_RW(rw); + SDL_RWclose(rw); + } return surface; } -- cgit v1.2.3-60-g2f50