summaryrefslogtreecommitdiff
path: root/src/being/being.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-10-28 20:47:42 +0300
committerAndrei Karas <akaras@inbox.ru>2016-10-28 20:47:42 +0300
commite7482b08370a87941f8d100d1f833f2128cb901c (patch)
tree93c23722bc7e3b56a9e5eaef1d12e770e0db9902 /src/being/being.cpp
parent6f496c4919a62edbb73e9adbc3ddd84484afc756 (diff)
downloadmv-e7482b08370a87941f8d100d1f833f2128cb901c.tar.gz
mv-e7482b08370a87941f8d100d1f833f2128cb901c.tar.bz2
mv-e7482b08370a87941f8d100d1f833f2128cb901c.tar.xz
mv-e7482b08370a87941f8d100d1f833f2128cb901c.zip
Add missing consts references.
Diffstat (limited to 'src/being/being.cpp')
-rw-r--r--src/being/being.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp
index c401f9d0b..578679f42 100644
--- a/src/being/being.cpp
+++ b/src/being/being.cpp
@@ -2741,7 +2741,7 @@ void Being::unSetSprite(const unsigned int slot) restrict2
// set sprite id, use color string, reset cards
void Being::setSpriteColor(const unsigned int slot,
const int id,
- std::string color) restrict2
+ const std::string &color) restrict2
{
if (!charServerHandler || slot >= charServerHandler->maxSprite())
return;
@@ -2898,7 +2898,7 @@ void Being::setSpriteColorId(const unsigned int slot,
// set sprite id, colors from cards, cards
void Being::setSpriteCards(const unsigned int slot,
const int id,
- CardsList cards) restrict2
+ const CardsList &cards) restrict2
{
if (!charServerHandler || slot >= charServerHandler->maxSprite())
return;
@@ -4902,7 +4902,7 @@ void Being::addItemParticles(const int id,
void Being::addItemParticlesCards(const int id,
const SpriteDisplay &restrict display,
- CardsList cards) restrict2
+ const CardsList &cards) restrict2
{
const SpriteParticleInfoIter it = mSpriteParticles.find(id);
ParticleInfo *restrict pi = nullptr;