diff options
author | Jared Adams <jaxad0127@gmail.com> | 2011-06-03 11:19:20 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2011-06-03 12:08:26 -0600 |
commit | 3c0cb0e058324ee1d3116017f14387e9a6004442 (patch) | |
tree | b9c00c3fdf1dff7e4c07bf4f8c83c2e7bc03c0f7 /src/net/manaserv/messageout.h | |
parent | 894038adf52a3e2b42542239a147d6c1cc1ad204 (diff) | |
download | mana-3c0cb0e058324ee1d3116017f14387e9a6004442.tar.gz mana-3c0cb0e058324ee1d3116017f14387e9a6004442.tar.bz2 mana-3c0cb0e058324ee1d3116017f14387e9a6004442.tar.xz mana-3c0cb0e058324ee1d3116017f14387e9a6004442.zip |
Replace SDL_types.h with cstdint
This required moving to C++0x, so it does that too, and fixes a few errors with
that.
Reviewed-by: Thorbjørn Lindeijer <thorbjorn@lindeijer.nl>
Diffstat (limited to 'src/net/manaserv/messageout.h')
-rw-r--r-- | src/net/manaserv/messageout.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/manaserv/messageout.h b/src/net/manaserv/messageout.h index a22ea824..db7c4780 100644 --- a/src/net/manaserv/messageout.h +++ b/src/net/manaserv/messageout.h @@ -29,12 +29,12 @@ namespace ManaServ { class MessageOut : public Net::MessageOut { public: - MessageOut(Uint16 id); + MessageOut(uint16_t id); ~MessageOut(); - void writeInt16(Uint16 value); /**< Writes a short. */ - void writeInt32(Uint32 value); /**< Writes a "long". */ + void writeInt16(uint16_t value); + void writeInt32(uint32_t value); protected: /** |