diff options
Diffstat (limited to 'src/gui/palette.h')
-rw-r--r-- | src/gui/palette.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/palette.h b/src/gui/palette.h index 0c3c2dc87..a69a373b9 100644 --- a/src/gui/palette.h +++ b/src/gui/palette.h @@ -78,10 +78,10 @@ class Palette */ inline const gcn::Color &getColor(int type, int alpha = 255) { - if (type >= (signed)mColors.size()) + if (type >= static_cast<signed>(mColors.size())) { - logger->log("incorrect color request type: %d from %ld", - type, mColors.size()); + logger->log("incorrect color request type: %d from %u", + type, static_cast<unsigned int>(mColors.size())); type = 0; } gcn::Color* col = &mColors[type].color; |