summaryrefslogtreecommitdiff
path: root/src/net/eathena/playerhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-07-27 19:44:13 +0300
committerAndrei Karas <akaras@inbox.ru>2018-07-27 19:44:13 +0300
commitb27338573f455ac730e6bcca9d46b50391ddf7b3 (patch)
tree3c82892185ea6d226bac8ea60f534cae02137bbe /src/net/eathena/playerhandler.cpp
parent03d1705dfafccdcd5ed613a2cca699e80978f747 (diff)
downloadManaVerse-b27338573f455ac730e6bcca9d46b50391ddf7b3.tar.gz
ManaVerse-b27338573f455ac730e6bcca9d46b50391ddf7b3.tar.bz2
ManaVerse-b27338573f455ac730e6bcca9d46b50391ddf7b3.tar.xz
ManaVerse-b27338573f455ac730e6bcca9d46b50391ddf7b3.zip
Fix code style.
Diffstat (limited to 'src/net/eathena/playerhandler.cpp')
-rw-r--r--src/net/eathena/playerhandler.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp
index d82e28a05..0380ec098 100644
--- a/src/net/eathena/playerhandler.cpp
+++ b/src/net/eathena/playerhandler.cpp
@@ -800,12 +800,12 @@ void PlayerHandler::selectStyle(const int headColor,
if (packetVersion < 20151104)
return;
createOutPacket(CMSG_PLAYER_SELECT_STYLE);
- outMsg.writeInt16(headColor, "head color");
- outMsg.writeInt16(headStyle, "head style");
- outMsg.writeInt16(bodyColor, "body color");
- outMsg.writeInt16(topStyle, "top style");
- outMsg.writeInt16(middleStyle, "middle style");
- outMsg.writeInt16(bottomStyle, "bottom style");
+ outMsg.writeInt16(CAST_S16(headColor), "head color");
+ outMsg.writeInt16(CAST_S16(headStyle), "head style");
+ outMsg.writeInt16(CAST_S16(bodyColor), "body color");
+ outMsg.writeInt16(CAST_S16(topStyle), "top style");
+ outMsg.writeInt16(CAST_S16(middleStyle), "middle style");
+ outMsg.writeInt16(CAST_S16(bottomStyle), "bottom style");
}
#undef setStatComplex