diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2011-06-02 23:49:49 -0700 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2011-06-03 11:03:25 -0600 |
commit | 894038adf52a3e2b42542239a147d6c1cc1ad204 (patch) | |
tree | b881994e4605bcf0ba2d1df68068a78fb21ecf01 /src/net/messageout.h | |
parent | d50f35d13e73b72eae1d744971657bd665aa1f33 (diff) | |
download | mana-894038adf52a3e2b42542239a147d6c1cc1ad204.tar.gz mana-894038adf52a3e2b42542239a147d6c1cc1ad204.tar.bz2 mana-894038adf52a3e2b42542239a147d6c1cc1ad204.tar.xz mana-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.h | 6 |
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 |