aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/worldofxeen
diff options
context:
space:
mode:
Diffstat (limited to 'engines/xeen/worldofxeen')
-rw-r--r--engines/xeen/worldofxeen/clouds_cutscenes.cpp6
-rw-r--r--engines/xeen/worldofxeen/darkside_cutscenes.cpp8
2 files changed, 7 insertions, 7 deletions
diff --git a/engines/xeen/worldofxeen/clouds_cutscenes.cpp b/engines/xeen/worldofxeen/clouds_cutscenes.cpp
index 4e50336f6e..2c8d5f0c38 100644
--- a/engines/xeen/worldofxeen/clouds_cutscenes.cpp
+++ b/engines/xeen/worldofxeen/clouds_cutscenes.cpp
@@ -217,7 +217,7 @@ bool CloudsCutscenes::showCloudsIntro() {
groupo.draw(screen, 0);
groupo.draw(screen, 1, Common::Point(160, 0));
crodo.draw(screen, 0, Common::Point(0, -5));
- screen._windows[0].writeString(CLOUDS_INTRO1);
+ screen._windows[0].writeString(Res.CLOUDS_INTRO1);
// Unroll a scroll
if (doScroll(false, true))
@@ -285,7 +285,7 @@ bool CloudsCutscenes::showCloudsIntro() {
case 12:
case 13: {
crodo.draw(screen, 0, Common::Point(0, -5));
- screen._windows[0].writeString(CLOUDS_INTRO1);
+ screen._windows[0].writeString(Res.CLOUDS_INTRO1);
ctr5 = (ctr5 + 1) % 19;
WAIT(1);
@@ -298,7 +298,7 @@ bool CloudsCutscenes::showCloudsIntro() {
if (lookup > 30)
lookup = 30;
frameCtr = _INTRO_FRAMES_VALS[_INTRO_FRAMES_LOOKUP[lineCtr]][lookup];
- screen._windows[0].writeString(CLOUDS_INTRO1);
+ screen._windows[0].writeString(Res.CLOUDS_INTRO1);
ctr5 = (ctr5 + 1) % 19;
WAIT(1);
diff --git a/engines/xeen/worldofxeen/darkside_cutscenes.cpp b/engines/xeen/worldofxeen/darkside_cutscenes.cpp
index 2dc9c60e8e..f3bae10f45 100644
--- a/engines/xeen/worldofxeen/darkside_cutscenes.cpp
+++ b/engines/xeen/worldofxeen/darkside_cutscenes.cpp
@@ -1158,8 +1158,8 @@ bool DarkSideCutscenes::showDarkSideEnding() {
}
void DarkSideCutscenes::showDarkSideScore() {
- Common::String str = Common::String::format(DARKSIDE_ENDING1, _vm->_endingScore);
- showPharaohEndText(str.c_str(), DARKSIDE_ENDING2);
+ Common::String str = Common::String::format(Res.DARKSIDE_ENDING1, _vm->_endingScore);
+ showPharaohEndText(str.c_str(), Res.DARKSIDE_ENDING2);
}
void DarkSideCutscenes::showPharaohEndText(const char *msg1, const char *msg2, const char *msg3) {
@@ -1210,11 +1210,11 @@ void DarkSideCutscenes::showPharaohEndText(const char *msg1, const char *msg2, c
claw.draw(screen, idx % 5, Common::Point(XLIST2[idx], YLIST2[idx]), SPRFLAG_800);
// Form the text string to display the text
- Common::String str1 = Common::String::format(PHAROAH_ENDING_TEXT1,
+ Common::String str1 = Common::String::format(Res.PHAROAH_ENDING_TEXT1,
text[pageNum]);
screen._windows[39].writeString(str1);
- Common::String str2 = Common::String::format(PHAROAH_ENDING_TEXT2,
+ Common::String str2 = Common::String::format(Res.PHAROAH_ENDING_TEXT2,
text[pageNum]);
screen._windows[39].writeString(str2);