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/sw_polyse.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/sw_polyse.c')
-rw-r--r-- | source/sw_polyse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/sw_polyse.c b/source/sw_polyse.c index a79c82c..560004c 100644 --- a/source/sw_polyse.c +++ b/source/sw_polyse.c @@ -558,7 +558,7 @@ void R_PolysetDrawSpansOpaque( spanpackage_t *pspanpackage ) { do { if ((lzi >> 16) >= *lpz) { *lpz = lzi >> 16; - *( uint32 * )lpdest = *( uint32 * )lptex; + *( uint32_t * )lpdest = *( uint32_t * )lptex; } lpdest += VID_BYTES; lzi += r_zistepx; |