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/iteminfo.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/iteminfo.cpp')
-rw-r--r-- | src/resources/iteminfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resources/iteminfo.cpp b/src/resources/iteminfo.cpp index 8033ada7b..04be2fc6f 100644 --- a/src/resources/iteminfo.cpp +++ b/src/resources/iteminfo.cpp @@ -107,7 +107,7 @@ void ItemInfo::setAttackAction(std::string attackAction) void ItemInfo::addSound(const EquipmentSoundEvent event, const std::string &filename) { - mSounds[event].push_back(paths.getStringValue("sfx") + filename); + mSounds[event].push_back(paths.getStringValue("sfx").append(filename)); } const std::string &ItemInfo::getSound(const EquipmentSoundEvent event) const |