mirror of
https://github.com/dhewm/dhewm3.git
synced 2025-04-20 01:16:41 +00:00
Replace sizeof( bool ) with sizeof( char )
sizeof( bool ) evaluates to 4 on ppc32
This commit is contained in:
parent
78eef43d50
commit
e17a9f9448
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ idLib::Init
|
|||
*/
|
||||
void idLib::Init( void ) {
|
||||
|
||||
assert( sizeof( bool ) == 1 );
|
||||
assert( sizeof( char ) == 1 );
|
||||
|
||||
// assumptions from the scripting compiler/interpreter
|
||||
assert( sizeof( float ) == sizeof( int ) );
|
||||
|
|
Loading…
Reference in a new issue