(svn r9327) -Fix (r9301): Fix warning on MSVC

This commit is contained in:
peter1138 2007-03-19 12:58:43 +00:00
parent 457930c483
commit 63ccdcf082
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ CargoID GetCargoIDByLabel(CargoLabel cl);
static inline bool IsCargoInClass(CargoID c, uint16 cc)
{
return GetCargo(c)->classes & cc;
return (GetCargo(c)->classes & cc) != 0;
}