summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/resources/image/image.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/resources/image/image.cpp b/src/resources/image/image.cpp
index fe21631e6..bb3fe6ce6 100644
--- a/src/resources/image/image.cpp
+++ b/src/resources/image/image.cpp
@@ -82,8 +82,6 @@ Image::Image(SDL_Texture *restrict const image,
}
else
{
- logger->log("Image::Image(SDL_Texture *const image):"
- " Couldn't load invalid Surface!");
mBounds.w = 0;
mBounds.h = 0;
}
@@ -128,8 +126,6 @@ Image::Image(SDL_Surface *restrict const image, const bool hasAlphaChannel0,
}
else
{
- logger->log(
- "Image::Image(SDL_Surface*): Couldn't load invalid Surface!");
mBounds.w = 0;
mBounds.h = 0;
}
@@ -169,11 +165,6 @@ Image::Image(const GLuint glimage, const int width, const int height,
{
mLoaded = true;
}
- else
- {
- logger->log("Image::Image(GLuint*, ...):"
- " Couldn't load invalid Surface!");
- }
}
#endif