Skip to content

Commit

Permalink
SHERLOCK: Fix incorrect if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed May 30, 2015
1 parent 8fc36ee commit e469604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/sherlock/tattoo/tattoo_scene.cpp
Expand Up @@ -244,7 +244,7 @@ void TattooScene::doBgAnimUpdateBgObjectsAndAnim() {
people[idx].adjustSprite();
}

if (_activeCAnim._images != nullptr != _activeCAnim._zPlacement != REMOVE) {
if (_activeCAnim._images != nullptr && _activeCAnim._zPlacement != REMOVE) {
_activeCAnim.getNextFrame();
}

Expand Down

0 comments on commit e469604

Please sign in to comment.