mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
Fix warning
svn-id: r49192
This commit is contained in:
parent
07ccf29ecf
commit
c96e234a0a
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user