Fixed: Warning assert always false

This commit is contained in:
kervala 2015-02-14 17:47:55 +01:00
parent 8e343db0fa
commit da7b88f052
2 changed files with 2 additions and 2 deletions

View file

@ -456,7 +456,7 @@ bool CCtrlSheetInfo::parseCtrlInfo(xmlNodePtr cur, CInterfaceGroup * /* parentGr
else else
{ {
// must not have so much brick type, else must change code! // must not have so much brick type, else must change code!
nlassert(brickType<32); // nlassert(brickType<32);
// Ok set the bit associated // Ok set the bit associated
_BrickTypeBitField|= 1<<brickType; _BrickTypeBitField|= 1<<brickType;

View file

@ -43,7 +43,7 @@ namespace BRICK_TYPE
TIMED_ACTION, TIMED_ACTION,
BRICK_TYPE_COUNT, BRICK_TYPE_COUNT,
BONUS, BONUS,
UNKNOWN UNKNOWN // Warning: Shouldn't exceed 32
}; };