mirror of
https://github.com/dhewm/dhewm3.git
synced 2024-11-26 22:31:17 +00:00
s/BigLong/BigInt/ to match the return type
This commit is contained in:
parent
49c4d028a5
commit
5f5a6e7043
2 changed files with 2 additions and 2 deletions
|
@ -435,7 +435,7 @@ short LittleShort( short l ) {
|
||||||
return SDL_SwapLE16(l);
|
return SDL_SwapLE16(l);
|
||||||
}
|
}
|
||||||
|
|
||||||
int BigLong( int l ) {
|
int BigInt( int l ) {
|
||||||
return SDL_SwapBE32(l);
|
return SDL_SwapBE32(l);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -106,7 +106,7 @@ void UnpackColor( const dword color, idVec4 &unpackedColor );
|
||||||
// little/big endian conversion
|
// little/big endian conversion
|
||||||
short BigShort( short l );
|
short BigShort( short l );
|
||||||
short LittleShort( short l );
|
short LittleShort( short l );
|
||||||
int BigLong( int l );
|
int BigInt( int l );
|
||||||
int LittleInt( int l );
|
int LittleInt( int l );
|
||||||
float BigFloat( float l );
|
float BigFloat( float l );
|
||||||
float LittleFloat( float l );
|
float LittleFloat( float l );
|
||||||
|
|
Loading…
Reference in a new issue