aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/text_mr.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2008-05-02 15:21:51 +0000
committerJohannes Schickel2008-05-02 15:21:51 +0000
commitc6830b4138be54e056a7cf18b6b900c3e46ab4ff (patch)
tree58539ee1e4abf7ef87c8f76404025af9b7043639 /engines/kyra/text_mr.cpp
parent2da2fb7f4d183ca6e64c9ada4c92986685185c40 (diff)
downloadscummvm-rg350-c6830b4138be54e056a7cf18b6b900c3e46ab4ff.tar.gz
scummvm-rg350-c6830b4138be54e056a7cf18b6b900c3e46ab4ff.tar.bz2
scummvm-rg350-c6830b4138be54e056a7cf18b6b900c3e46ab4ff.zip
- Renamed TextDisplayer_v2 to TextDisplayer_HoF
- Moved some character shape code to KyraEngine_v2 svn-id: r31821
Diffstat (limited to 'engines/kyra/text_mr.cpp')
-rw-r--r--engines/kyra/text_mr.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/kyra/text_mr.cpp b/engines/kyra/text_mr.cpp
index 4f3c350099..3e728cf538 100644
--- a/engines/kyra/text_mr.cpp
+++ b/engines/kyra/text_mr.cpp
@@ -576,11 +576,11 @@ void KyraEngine_MR::updateDlgIndex() {
static const uint8 dlgIndexMoodEvil[] = { 0x06, 0x08, 0x0A, 0x09, 0x0B };
if (_malcolmsMood == 0)
- dlgIndex = dlgIndexMoodNice[_malcolmShapes];
+ dlgIndex = dlgIndexMoodNice[_characterShapeFile];
else if (_malcolmsMood == 1)
- dlgIndex = dlgIndexMoodNormal[_malcolmShapes];
+ dlgIndex = dlgIndexMoodNormal[_characterShapeFile];
else if (_malcolmsMood == 2)
- dlgIndex = dlgIndexMoodEvil[_malcolmShapes];
+ dlgIndex = dlgIndexMoodEvil[_characterShapeFile];
} else if (_currentChapter == 2) {
if (dlgIndex >= 8)
dlgIndex -= 4;