From: Tobias Markus Date: Sat, 7 Mar 2015 20:25:30 +0000 (+0100) Subject: Downgrade surface format message from warning to debug X-Git-Url: https://git.octo.it/?p=supertux.git;a=commitdiff_plain;h=77b5a67fccb8ce3a5ba43280105031a46560a5c8 Downgrade surface format message from warning to debug --- diff --git a/src/video/texture_manager.cpp b/src/video/texture_manager.cpp index f334275d4..dc38be949 100644 --- a/src/video/texture_manager.cpp +++ b/src/video/texture_manager.cpp @@ -151,7 +151,7 @@ TextureManager::create_image_texture_raw(const std::string& filename, const Rect SDL_PixelFormat* format = image->format; if(format->Rmask == 0 && format->Gmask == 0 && format->Bmask == 0 && format->Amask == 0) { - log_warning << "Wrong surface format for image " << filename << ". Compensating." << std::endl; + log_debug << "Wrong surface format for image " << filename << ". Compensating." << std::endl; image = SDL_ConvertSurfaceFormat(image, SDL_PIXELFORMAT_RGBA8888, 0); }