Fix warning
svn-id: r49192
This commit is contained in:
parent
07ccf29ecf
commit
c96e234a0a
1 changed files with 1 additions and 1 deletions
|
@ -329,7 +329,7 @@ bool Input::translateGameInput() {
|
||||||
bool noWalk = z->_flags & kFlagsNoWalk; // check the explicit no-walk flag
|
bool noWalk = z->_flags & kFlagsNoWalk; // check the explicit no-walk flag
|
||||||
if (_gameType == GType_BRA) {
|
if (_gameType == GType_BRA) {
|
||||||
// action performed on object marked for self-use do not need walk in 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) {
|
if (noWalk) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue