diff --git a/neo/idlib/Lib.cpp b/neo/idlib/Lib.cpp index ed7ad122..221e6397 100644 --- a/neo/idlib/Lib.cpp +++ b/neo/idlib/Lib.cpp @@ -435,7 +435,7 @@ short LittleShort( short l ) { return SDL_SwapLE16(l); } -int BigLong( int l ) { +int BigInt( int l ) { return SDL_SwapBE32(l); } diff --git a/neo/idlib/Lib.h b/neo/idlib/Lib.h index 6ede1602..90287bad 100644 --- a/neo/idlib/Lib.h +++ b/neo/idlib/Lib.h @@ -106,7 +106,7 @@ void UnpackColor( const dword color, idVec4 &unpackedColor ); // little/big endian conversion short BigShort( short l ); short LittleShort( short l ); -int BigLong( int l ); +int BigInt( int l ); int LittleInt( int l ); float BigFloat( float l ); float LittleFloat( float l );