diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-07-07 22:52:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-07-07 22:52:35 +0300 |
commit | 5e14ab971129eb95ca02e373fc21adb46c0eaca1 (patch) | |
tree | 5316f688c7f617776b7e70c9f64932fe7596cadb /src/being.cpp | |
parent | ed950471f7ae02c4618fa995c305832f12dc9cd7 (diff) | |
download | plus-5e14ab971129eb95ca02e373fc21adb46c0eaca1.tar.gz plus-5e14ab971129eb95ca02e373fc21adb46c0eaca1.tar.bz2 plus-5e14ab971129eb95ca02e373fc21adb46c0eaca1.tar.xz plus-5e14ab971129eb95ca02e373fc21adb46c0eaca1.zip |
Remove undescore from variables and defines.
Diffstat (limited to 'src/being.cpp')
-rw-r--r-- | src/being.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/being.cpp b/src/being.cpp index c65b1c517..fcf230dc0 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -669,7 +669,7 @@ void Being::takeDamage(Being *attacker, int amount, AttackType type) } void Being::handleAttack(Being *victim, int damage, - AttackType type _UNUSED_) + AttackType type A_UNUSED) { if (!victim || !mInfo) return; @@ -741,7 +741,7 @@ void Being::setGuildName(const std::string &name) } -void Being::setGuildPos(const std::string &pos _UNUSED_) +void Being::setGuildPos(const std::string &pos A_UNUSED) { // logger->log("Got guild position \"%s\" for being %s(%i)", pos.c_str(), mName.c_str(), mId); } @@ -915,7 +915,7 @@ void Being::fireMissile(Being *victim, const std::string &particle) } -void Being::setAction(Action action, int attackType _UNUSED_) +void Being::setAction(Action action, int attackType A_UNUSED) { std::string currentAction = SpriteAction::INVALID; |