mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-26 12:48:16 +00:00
KYRA: (MR) - fix spelling in comments
This commit is contained in:
parent
2c044b0c96
commit
50e5b82981
@ -1202,7 +1202,7 @@ void KyraEngine_MR::makeCharFacingMouse() {
|
||||
_mainCharacter.facing = 5;
|
||||
else
|
||||
_mainCharacter.facing = 3;
|
||||
// _mainCharacter.facing can not be 0xFF here, so this is save.
|
||||
// _mainCharacter.facing can not be 0xFF here, so this is safe.
|
||||
_mainCharacter.animFrame = _characterFrameTable[_mainCharacter.facing];
|
||||
updateCharacterAnim(0);
|
||||
refreshAnimObjectsIfNeed();
|
||||
|
@ -80,7 +80,7 @@ void KyraEngine_MR::showBadConscience() {
|
||||
_mainCharacter.facing = 3;
|
||||
else
|
||||
_mainCharacter.facing = 5;
|
||||
// _mainCharacter.facing can not be 0xFF here, so this is save.
|
||||
// _mainCharacter.facing can not be 0xFF here, so this is safe.
|
||||
_mainCharacter.animFrame = _characterFrameTable[_mainCharacter.facing];
|
||||
}
|
||||
|
||||
|
@ -225,7 +225,7 @@ void KyraEngine_MR::objectChat(const char *str, int object, int vocHigh, int voc
|
||||
int chat = talkScriptTable[chatType + _mainCharacter.facing * 4];
|
||||
objectChatProcess(talkFilenameTable[chat]);
|
||||
_text->restoreScreen();
|
||||
// _mainCharacter.facing can not be 0xFF here, so this is save.
|
||||
// _mainCharacter.facing can not be 0xFF here, so this is safe.
|
||||
_mainCharacter.animFrame = _characterFrameTable[_mainCharacter.facing];
|
||||
updateCharacterAnim(0);
|
||||
_chatText = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user