Fix a little bug in KyraEngine_MR::showBadConscience, which prevented Gunther's mouse shapes from showing up.

svn-id: r42895
This commit is contained in:
Johannes Schickel 2009-07-29 16:24:07 +00:00
parent ca7c35bc9a
commit 0570280885

View File

@ -42,7 +42,8 @@ void KyraEngine_MR::showBadConscience() {
_badConscienceAnim = 6;
else if (_currentChapter == 5 && _rnd.getRandomNumberRng(1, 100) <= 25)
_badConscienceAnim = 7;
else if (_characterShapeFile == 9)
if (_characterShapeFile == 9)
_badConscienceAnim = 4;
_badConsciencePosition = (_mainCharacter.x1 <= 160);