Welcome, Guest! Log In | Create Account

Changeset 45580

Show
Ignore:
Timestamp:
10/31/09 19:52:46 (2 months ago)
Author:
lordhoto
Message:

Fix certain scenes incorrectly appearing as fireberry bushes in floppy/FM-Towns/PC98 versions of Kyrandia 1.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • scummvm/trunk/engines/kyra/script_lok.cpp

    r44709 r45580  
    11241124                return 29; 
    11251125 
    1126         if (_currentCharacter->sceneId == 133 || _currentCharacter->sceneId == 137 || 
    1127                 _currentCharacter->sceneId == 165 || _currentCharacter->sceneId == 173) 
    1128                 return 29; 
     1126        // The following rooms are only a "A fireberry bush" scene, in the CD talkie version 
     1127        // of the game, in all other versions they are a usual dark cave, thus we do not 
     1128        // return a glow value of "29" over here. 
     1129        if (_flags.isTalkie) { 
     1130                if (_currentCharacter->sceneId == 133 || _currentCharacter->sceneId == 137 || 
     1131                        _currentCharacter->sceneId == 165 || _currentCharacter->sceneId == 173) 
     1132                        return 29; 
     1133        } 
    11291134 
    11301135        if (_itemInHand == 28)