diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-09-13 19:10:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-09-13 21:20:33 +0300 |
commit | fcf1da7a161c3e18d393a9b998effc6aa1c366b9 (patch) | |
tree | 5f92a8a168dd0748903cc90620a00c7c7bd29377 /src/net | |
parent | cd0baf3217701134a8e61932fd14c39cec0cf242 (diff) | |
download | plus-fcf1da7a161c3e18d393a9b998effc6aa1c366b9.tar.gz plus-fcf1da7a161c3e18d393a9b998effc6aa1c366b9.tar.bz2 plus-fcf1da7a161c3e18d393a9b998effc6aa1c366b9.tar.xz plus-fcf1da7a161c3e18d393a9b998effc6aa1c366b9.zip |
fix code style.
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/tmwa/beinghandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/tmwa/beinghandler.cpp b/src/net/tmwa/beinghandler.cpp index 1a099b3d8..13504cde3 100644 --- a/src/net/tmwa/beinghandler.cpp +++ b/src/net/tmwa/beinghandler.cpp @@ -669,8 +669,8 @@ void BeingHandler::processBeingMove3(Net::MessageIn &msg) const if (serverVersion < 10) return; - const static int dirx[8] = {0, -1, -1, -1, 0, 1, 1, 1}; - const static int diry[8] = {1, 1, 0, -1, -1, -1, 0, 1}; + static const int dirx[8] = {0, -1, -1, -1, 0, 1, 1, 1}; + static const int diry[8] = {1, 1, 0, -1, -1, -1, 0, 1}; const int len = msg.readInt16() - 14; Being *const dstBeing = actorSpriteManager->findBeing(msg.readInt32()); |