summaryrefslogtreecommitdiff
path: root/src/net/messageout.h
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2011-06-02 23:49:49 -0700
committerJared Adams <jaxad0127@gmail.com>2011-06-03 11:03:25 -0600
commit894038adf52a3e2b42542239a147d6c1cc1ad204 (patch)
treeb881994e4605bcf0ba2d1df68068a78fb21ecf01 /src/net/messageout.h
parentd50f35d13e73b72eae1d744971657bd665aa1f33 (diff)
downloadmana-client-894038adf52a3e2b42542239a147d6c1cc1ad204.tar.gz
mana-client-894038adf52a3e2b42542239a147d6c1cc1ad204.tar.bz2
mana-client-894038adf52a3e2b42542239a147d6c1cc1ad204.tar.xz
mana-client-894038adf52a3e2b42542239a147d6c1cc1ad204.zip
Cleanup network code to use unsigned integers of the relevant size
Diffstat (limited to 'src/net/messageout.h')
-rw-r--r--src/net/messageout.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/messageout.h b/src/net/messageout.h
index 05a55422..e05d3bd7 100644
--- a/src/net/messageout.h
+++ b/src/net/messageout.h
@@ -36,9 +36,9 @@ namespace Net {
class MessageOut
{
public:
- virtual void writeInt8(Sint8 value); /**< Writes a byte. */
- virtual void writeInt16(Sint16 value) = 0; /**< Writes a short. */
- virtual void writeInt32(Sint32 value) = 0; /**< Writes a long. */
+ virtual void writeInt8(Uint8 value); /**< Writes a byte. */
+ virtual void writeInt16(Uint16 value) = 0; /**< Writes a short. */
+ virtual void writeInt32(Uint32 value) = 0; /**< Writes a "long". */
/**
* Writes a string. If a fixed length is not given (-1), it is stored