diff options
author | Strangerke | 2013-08-20 02:14:24 +0200 |
---|---|---|
committer | Strangerke | 2013-08-20 02:14:24 +0200 |
commit | 5fdfc0996ca184fe78b930c41afce0031eb1746d (patch) | |
tree | f8b5787522d88dd9fec6edb17da372969b3bff93 | |
parent | 91c2f8fb097f65801f6f97340e0a4a8dbead6404 (diff) | |
download | scummvm-rg350-5fdfc0996ca184fe78b930c41afce0031eb1746d.tar.gz scummvm-rg350-5fdfc0996ca184fe78b930c41afce0031eb1746d.tar.bz2 scummvm-rg350-5fdfc0996ca184fe78b930c41afce0031eb1746d.zip |
MORTEVIELLE: Fix display of the rod and the ball in the attic, when using Self/Put
-rw-r--r-- | engines/mortevielle/actions.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/mortevielle/actions.cpp b/engines/mortevielle/actions.cpp index c06f19dadc..d0ecd6cdc0 100644 --- a/engines/mortevielle/actions.cpp +++ b/engines/mortevielle/actions.cpp @@ -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); } } |