diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-10-16 21:18:11 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-10-16 21:18:11 +0000 |
commit | d3175115354bb2417f01877a96d0068e2f2c875d (patch) | |
tree | 3fe6dde2b7922eb12bc376687ae18a59971d908e /src/gui/sell.cpp | |
parent | 43a80fa64acb7f02cf5305b4a3d2ef6040b4b8c9 (diff) | |
download | mana-d3175115354bb2417f01877a96d0068e2f2c875d.tar.gz mana-d3175115354bb2417f01877a96d0068e2f2c875d.tar.bz2 mana-d3175115354bb2417f01877a96d0068e2f2c875d.tar.xz mana-d3175115354bb2417f01877a96d0068e2f2c875d.zip |
Rename {read,write}{Byte,Short,Long} to {read,write}Int{8,16,32}.
Diffstat (limited to 'src/gui/sell.cpp')
-rw-r--r-- | src/gui/sell.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/sell.cpp b/src/gui/sell.cpp index 73880861..a147fa44 100644 --- a/src/gui/sell.cpp +++ b/src/gui/sell.cpp @@ -232,10 +232,10 @@ void SellDialog::action(const std::string& eventId) assert(m_amountItems > 0 && m_amountItems <= m_maxItems); MessageOut outMsg; - outMsg.writeShort(CMSG_NPC_SELL_REQUEST); - outMsg.writeShort(8); - outMsg.writeShort(shopInventory[selectedItem].index); - outMsg.writeShort(m_amountItems); + outMsg.writeInt16(CMSG_NPC_SELL_REQUEST); + outMsg.writeInt16(8); + outMsg.writeInt16(shopInventory[selectedItem].index); + outMsg.writeInt16(m_amountItems); m_maxItems -= m_amountItems; m_amountItems = 0; |