Skip to content

Commit

Permalink
MORTEVIELLE: Fix display of the rod and the ball in the attic, when u…
Browse files Browse the repository at this point in the history
…sing Self/Put
  • Loading branch information
Strangerke committed Aug 20, 2013
1 parent 91c2f8f commit 5fdfc09
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion engines/mortevielle/actions.cpp
Expand Up @@ -1002,12 +1002,15 @@ void MortevielleEngine::fctSelfPut() {
if (_num == 1) {
if (_coreVar._atticBallHoleObjectId != 0)
_crep = 188;
else
else {
_coreVar._atticBallHoleObjectId = _coreVar._selectedObjectId;
displayAnimFrame(1, 7);
}
} else if (_coreVar._atticRodHoleObjectId != 0) {
_crep = 188;
} else {
_coreVar._atticRodHoleObjectId = _coreVar._selectedObjectId;
displayAnimFrame(1, 6);
}
}

Expand Down

0 comments on commit 5fdfc09

Please sign in to comment.