diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-07-07 16:53:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-07 16:53:05 +0300 |
commit | ab2e469db696f6407f7953638ac0a4036ec713ad (patch) | |
tree | e90eb19808d6213bcd6e96485124be4901276b50 /src/resources | |
parent | e84760c24b479ae735cc64e72cd4a42551fba7a8 (diff) | |
download | plus-ab2e469db696f6407f7953638ac0a4036ec713ad.tar.gz plus-ab2e469db696f6407f7953638ac0a4036ec713ad.tar.bz2 plus-ab2e469db696f6407f7953638ac0a4036ec713ad.tar.xz plus-ab2e469db696f6407f7953638ac0a4036ec713ad.zip |
Fix typo pallette -> palette.s20160708
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/iteminfo.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/resources/iteminfo.cpp b/src/resources/iteminfo.cpp index aa5d81b8e..2b501627c 100644 --- a/src/resources/iteminfo.cpp +++ b/src/resources/iteminfo.cpp @@ -417,7 +417,7 @@ std::string ItemInfo::getColorName(const ItemColor idx) const it = mColorsList->find(idx); if (it == mColorsList->end()) { - reportAlways("Color %d for pallette %s not found", + reportAlways("Color %d for palette %s not found", CAST_S32(idx), mColorsListName.c_str()); return std::string(); @@ -434,7 +434,7 @@ std::string ItemInfo::getColor(const ItemColor idx) const it = mColorsList->find(idx); if (it == mColorsList->end()) { - reportAlways("Color %d for pallette %s not found", + reportAlways("Color %d for palette %s not found", CAST_S32(idx), mColorsListName.c_str()); return std::string(); @@ -451,7 +451,7 @@ std::string ItemInfo::getIconColorName(const ItemColor idx) const it = mIconColorsList->find(idx); if (it == mIconColorsList->end()) { - reportAlways("Color %d for pallette %s not found", + reportAlways("Color %d for palette %s not found", CAST_S32(idx), mColorsListName.c_str()); return std::string(); @@ -468,7 +468,7 @@ std::string ItemInfo::getIconColor(const ItemColor idx) const it = mIconColorsList->find(idx); if (it == mIconColorsList->end()) { - reportAlways("Color %d for pallette %s not found", + reportAlways("Color %d for palette %s not found", CAST_S32(idx), mColorsListName.c_str()); return std::string(); |