diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-16 00:27:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-16 00:32:49 +0300 |
commit | 2ed0917b4ee942ff55639500f846ae9cb4f48b90 (patch) | |
tree | 431158e61d703a747115088e1b084651c923e0dd /src/gui/palette.cpp | |
parent | 875ece90ff94c4cf295b53c8bb37d9238ece38e9 (diff) | |
download | mv-2ed0917b4ee942ff55639500f846ae9cb4f48b90.tar.gz mv-2ed0917b4ee942ff55639500f846ae9cb4f48b90.tar.bz2 mv-2ed0917b4ee942ff55639500f846ae9cb4f48b90.tar.xz mv-2ed0917b4ee942ff55639500f846ae9cb4f48b90.zip |
Fix some signed/unsigned chars issues.
Diffstat (limited to 'src/gui/palette.cpp')
-rw-r--r-- | src/gui/palette.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/palette.cpp b/src/gui/palette.cpp index 94604c128..558a977b5 100644 --- a/src/gui/palette.cpp +++ b/src/gui/palette.cpp @@ -64,7 +64,7 @@ Palette::~Palette() mInstances.erase(this); } -const gcn::Color& Palette::getColor(const char c, bool &valid) +const gcn::Color& Palette::getColor(const signed char c, bool &valid) { const CharColors::const_iterator it = mCharColors.find(c); if (it != mCharColors.end()) |