diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-02-26 01:40:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-02-26 01:40:00 +0300 |
commit | d4febba47388979b26cd4680cb8a6f20e548e399 (patch) | |
tree | 2d520db672ed39b755e668828d27f0dd9d18ed6e /src/resources/dye.cpp | |
parent | 803b6afd00b0e3574b40b866f21a0d3d01f6dc4d (diff) | |
download | plus-d4febba47388979b26cd4680cb8a6f20e548e399.tar.gz plus-d4febba47388979b26cd4680cb8a6f20e548e399.tar.bz2 plus-d4febba47388979b26cd4680cb8a6f20e548e399.tar.xz plus-d4febba47388979b26cd4680cb8a6f20e548e399.zip |
Improve string usage in other files.
Diffstat (limited to 'src/resources/dye.cpp')
-rw-r--r-- | src/resources/dye.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resources/dye.cpp b/src/resources/dye.cpp index a92af93bf..202ab0675 100644 --- a/src/resources/dye.cpp +++ b/src/resources/dye.cpp @@ -52,7 +52,7 @@ DyePalette::DyePalette(const std::string &description, const int8_t blockSize) }; for (int i = 0, colorIdx = 0; i < blockSize && colorIdx < 4; - i +=2, colorIdx ++) + i += 2, colorIdx ++) { color.value[colorIdx] = static_cast<unsigned char>(( hexDecode(description[pos + i]) << 4) |