diff options
-rw-r--r-- | src/resources/sdl2imagehelper.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/resources/sdl2imagehelper.cpp b/src/resources/sdl2imagehelper.cpp index 99aa53d2f..e647bed8f 100644 --- a/src/resources/sdl2imagehelper.cpp +++ b/src/resources/sdl2imagehelper.cpp @@ -72,7 +72,8 @@ Image *SDLImageHelper::_SDLload(SDL_Surface *tmpImage) mRenderer, tmpImage); if (!texture) { - reportAlways("Texture from surface creation failed"); + reportAlways("Texture from surface creation failed: %s", + SDL_GetError()); return nullptr; } SDL_SetTextureBlendMode(texture, SDL_BLENDMODE_BLEND); |