s/BigLong/BigInt/ to match the return type

This commit is contained in:
dhewg 2012-06-28 13:51:42 +02:00 committed by Daniel Gibson
parent 420783b151
commit a9ffb336f6
2 changed files with 2 additions and 2 deletions

View file

@ -435,7 +435,7 @@ short LittleShort( short l ) {
return SDL_SwapLE16(l);
}
int BigLong( int l ) {
int BigInt( int l ) {
return SDL_SwapBE32(l);
}

View file

@ -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 );