diff options
author | jak1 <jak1@themanaworld.org> | 2023-04-06 11:33:05 +0200 |
---|---|---|
committer | jak1 <jak1@themanaworld.org> | 2023-04-06 11:33:18 +0200 |
commit | 7f4eacd484d72bcecf3605c4fba6d277bc9261ef (patch) | |
tree | bb29ae212a475a3716e90d65dacfb847cf1acc5e /src/resources/sdlimagehelper.cpp | |
parent | f94899721258ec9dbd2524cf8f14886a66d1a222 (diff) | |
download | manaverse-7f4eacd484d72bcecf3605c4fba6d277bc9261ef.tar.gz manaverse-7f4eacd484d72bcecf3605c4fba6d277bc9261ef.tar.bz2 manaverse-7f4eacd484d72bcecf3605c4fba6d277bc9261ef.tar.xz manaverse-7f4eacd484d72bcecf3605c4fba6d277bc9261ef.zip |
removed assertion for sdl surface bpp, tests get ugly, but default runtime works fine
added "-A 20" to assert grep, so we get the backtrace directly in our pipelines
Diffstat (limited to 'src/resources/sdlimagehelper.cpp')
-rw-r--r-- | src/resources/sdlimagehelper.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/resources/sdlimagehelper.cpp b/src/resources/sdlimagehelper.cpp index 852064799..27e8f2f5d 100644 --- a/src/resources/sdlimagehelper.cpp +++ b/src/resources/sdlimagehelper.cpp @@ -224,7 +224,6 @@ Image *SDLImageHelper::_SDLload(SDL_Surface *tmpImage) if (tmpImage->format->BitsPerPixel != 32) { - reportAlways("Non 32 bit image detected") tmpImage = convertTo32Bit(tmpImage); if (tmpImage == nullptr) |