mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2024-11-24 21:41:23 +00:00
s/BigLong/BigInt/ to match the return type
This commit is contained in:
parent
420783b151
commit
a9ffb336f6
2 changed files with 2 additions and 2 deletions
|
@ -435,7 +435,7 @@ short LittleShort( short l ) {
|
|||
return SDL_SwapLE16(l);
|
||||
}
|
||||
|
||||
int BigLong( int l ) {
|
||||
int BigInt( int l ) {
|
||||
return SDL_SwapBE32(l);
|
||||
}
|
||||
|
||||
|
|
|
@ -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 );
|
||||
|
|
Loading…
Reference in a new issue