diff options
author | Andrey Nazarov <skuller@skuller.net> | 2008-02-17 22:53:39 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2008-02-17 22:53:39 +0000 |
commit | 4034314816f7ec9e26c9b9bfc2630c8ca0a24874 (patch) | |
tree | d48be98832d2d9cb977540541fae1acb1859142b /source/cl_parse.c | |
parent | a5afaf65af8ef50d1ce8bbd9e2133239013c26f7 (diff) |
Huge search and replace commit.
Use fixed size integer types from stdint.h instead of custom defined ones.
Get endianess infromation form endian.h.
Added `remotemode' console command.
Link with -ldl only on Linux.
Diffstat (limited to 'source/cl_parse.c')
-rw-r--r-- | source/cl_parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cl_parse.c b/source/cl_parse.c index 788bf19..cea58e4 100644 --- a/source/cl_parse.c +++ b/source/cl_parse.c @@ -469,7 +469,7 @@ CL_ParseFrame ================ */ static void CL_ParseFrame( int extrabits ) { - uint32 bits, extraflags; + uint32_t bits, extraflags; int currentframe, deltaframe, delta, surpressed; server_frame_t frame, *oldframe; @@ -1428,7 +1428,7 @@ static void CL_ParseZPacket( void ) { } static void CL_ParseSetting( void ) { - uint32 index, value; + uint32_t index, value; index = MSG_ReadLong(); value = MSG_ReadLong(); |