Fix warning

svn-id: r49192
This commit is contained in:
Eugene Sandulenko 2010-05-24 16:58:14 +00:00
parent 07ccf29ecf
commit c96e234a0a

View File

@ -329,7 +329,7 @@ bool Input::translateGameInput() {
bool noWalk = z->_flags & kFlagsNoWalk; // check the explicit no-walk flag
if (_gameType == GType_BRA) {
// action performed on object marked for self-use do not need walk in BRA
noWalk |= z->_flags & kFlagsYourself;
noWalk |= ((z->_flags & kFlagsYourself) != 0);
}
if (noWalk) {