diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-21 13:30:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-21 13:30:39 +0300 |
commit | 1fcc02e803d83ae8415ff44f9696cb215f475daa (patch) | |
tree | 3c4ccb5160624db095a139cb5a81a982e156d81c /src/gui/theme.cpp | |
parent | 126fa885664da8a8de86f3a38c04469f7006e447 (diff) | |
download | mv-1fcc02e803d83ae8415ff44f9696cb215f475daa.tar.gz mv-1fcc02e803d83ae8415ff44f9696cb215f475daa.tar.bz2 mv-1fcc02e803d83ae8415ff44f9696cb215f475daa.tar.xz mv-1fcc02e803d83ae8415ff44f9696cb215f475daa.zip |
fix signed shifts.
Diffstat (limited to 'src/gui/theme.cpp')
-rw-r--r-- | src/gui/theme.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/theme.cpp b/src/gui/theme.cpp index 4218aff7c..2a1b0d624 100644 --- a/src/gui/theme.cpp +++ b/src/gui/theme.cpp @@ -982,7 +982,7 @@ static gcn::Color readColor(const std::string &description) return Palette::BLACK; } - int v = 0; + unsigned int v = 0; for (int i = 1; i < 7; ++i) { signed const char c = description[i]; |