From 5a60cfd0ef0c2f8b78397d05a50ab9b939309ea5 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 31 May 2014 17:01:38 +0300 Subject: Fix sign on some vars. --- src/resources/imagehelper.cpp | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'src/resources/imagehelper.cpp') diff --git a/src/resources/imagehelper.cpp b/src/resources/imagehelper.cpp index ad0c98ad1..0092d132b 100644 --- a/src/resources/imagehelper.cpp +++ b/src/resources/imagehelper.cpp @@ -169,12 +169,15 @@ void ImageHelper::dumpSurfaceFormat(const SDL_Surface *const image) logger->log("Alpha: %d", format->alpha); #endif logger->log("Loss: %02x, %02x, %02x, %02x", - static_cast(format->Rloss), static_cast(format->Gloss), - static_cast(format->Bloss), static_cast(format->Aloss)); + static_cast(format->Rloss), + static_cast(format->Gloss), + static_cast(format->Bloss), + static_cast(format->Aloss)); logger->log("Shift: %02x, %02x, %02x, %02x", - static_cast(format->Rshift), static_cast(format->Gshift), - static_cast(format->Bshift), - static_cast(format->Ashift)); + static_cast(format->Rshift), + static_cast(format->Gshift), + static_cast(format->Bshift), + static_cast(format->Ashift)); logger->log("Mask: %08x, %08x, %08x, %08x", format->Rmask, format->Gmask, format->Bmask, format->Amask); } -- cgit v1.2.3-60-g2f50