summaryrefslogtreecommitdiff
path: root/src/net/tmwa/beingrecv.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-10-29 02:02:04 +0300
committerAndrei Karas <akaras@inbox.ru>2018-10-29 02:02:04 +0300
commita6d18b282ab916c6536dc25516affeb9200043b6 (patch)
tree9980735a47cb2118999fb4f4dceaa52bf9f4fae7 /src/net/tmwa/beingrecv.cpp
parent98c74738f21d7ae256f1273b6c1614ee64e2a3ad (diff)
downloadManaVerse-a6d18b282ab916c6536dc25516affeb9200043b6.tar.gz
ManaVerse-a6d18b282ab916c6536dc25516affeb9200043b6.tar.bz2
ManaVerse-a6d18b282ab916c6536dc25516affeb9200043b6.tar.xz
ManaVerse-a6d18b282ab916c6536dc25516affeb9200043b6.zip
Fix code style.s20181102
Diffstat (limited to 'src/net/tmwa/beingrecv.cpp')
-rw-r--r--src/net/tmwa/beingrecv.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/tmwa/beingrecv.cpp b/src/net/tmwa/beingrecv.cpp
index f4b533891..69744946b 100644
--- a/src/net/tmwa/beingrecv.cpp
+++ b/src/net/tmwa/beingrecv.cpp
@@ -280,7 +280,7 @@ void BeingRecv::processPlayerUpdate1(Net::MessageIn &msg)
}
uint8_t dir = dstBeing->getDirectionDelayed();
- if (dir != 0u)
+ if (dir != 0U)
{
if (dir != dstBeing->getDirection())
dstBeing->setDirection(dir);
@@ -425,7 +425,7 @@ void BeingRecv::processPlayerUpdate2(Net::MessageIn &msg)
}
uint8_t dir = dstBeing->getDirectionDelayed();
- if (dir != 0u)
+ if (dir != 0U)
{
if (dir != dstBeing->getDirection())
dstBeing->setDirection(dir);
@@ -566,7 +566,7 @@ void BeingRecv::processPlayerMove(Net::MessageIn &msg)
}
const uint8_t dir = dstBeing->getDirectionDelayed();
- if (dir != 0u)
+ if (dir != 0U)
{
if (dir != dstBeing->getDirection())
dstBeing->setDirection(dir);