diff options
Diffstat (limited to 'src/net/tmwa/playerhandler.cpp')
-rw-r--r-- | src/net/tmwa/playerhandler.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/net/tmwa/playerhandler.cpp b/src/net/tmwa/playerhandler.cpp index e0f3e5c29..62027cdd4 100644 --- a/src/net/tmwa/playerhandler.cpp +++ b/src/net/tmwa/playerhandler.cpp @@ -64,7 +64,7 @@ namespace */ struct WeightListener : public gcn::ActionListener { - void action(const gcn::ActionEvent &event _UNUSED_) + void action(const gcn::ActionEvent &event A_UNUSED) { weightNotice = NULL; } @@ -75,7 +75,7 @@ namespace */ struct DeathListener : public gcn::ActionListener { - void action(const gcn::ActionEvent &event _UNUSED_) + void action(const gcn::ActionEvent &event A_UNUSED) { Net::getPlayerHandler()->respawn(); deathNotice = NULL; @@ -675,7 +675,7 @@ void PlayerHandler::increaseAttribute(int attr) } } -void PlayerHandler::decreaseAttribute(int attr _UNUSED_) +void PlayerHandler::decreaseAttribute(int attr A_UNUSED) { // Supported by eA? } @@ -748,13 +748,13 @@ void PlayerHandler::respawn() outMsg.writeInt8(0); } -void PlayerHandler::ignorePlayer(const std::string &player _UNUSED_, - bool ignore _UNUSED_) +void PlayerHandler::ignorePlayer(const std::string &player A_UNUSED, + bool ignore A_UNUSED) { // TODO } -void PlayerHandler::ignoreAll(bool ignore _UNUSED_) +void PlayerHandler::ignoreAll(bool ignore A_UNUSED) { // TODO } |