aboutsummaryrefslogtreecommitdiff
path: root/sky/intro.cpp
diff options
context:
space:
mode:
authorJoost Peters2003-04-29 19:52:24 +0000
committerJoost Peters2003-04-29 19:52:24 +0000
commit5ea40b6778726f80e53a409f7cc8c5d75709aca3 (patch)
treeba33940a8cb4c744141d82c5dd4755edc8829026 /sky/intro.cpp
parente0e0247b4701fef4817666da34c733624881fec2 (diff)
downloadscummvm-rg350-5ea40b6778726f80e53a409f7cc8c5d75709aca3.tar.gz
scummvm-rg350-5ea40b6778726f80e53a409f7cc8c5d75709aca3.tar.bz2
scummvm-rg350-5ea40b6778726f80e53a409f7cc8c5d75709aca3.zip
added lowTextManager(), moved language from getText() to SkyText constructor + some cleanup
svn-id: r7202
Diffstat (limited to 'sky/intro.cpp')
-rw-r--r--sky/intro.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sky/intro.cpp b/sky/intro.cpp
index 9003fbbb76..5e2ef9e24f 100644
--- a/sky/intro.cpp
+++ b/sky/intro.cpp
@@ -227,7 +227,7 @@ void SkyState::intro(void) {
_introTextSpace = (uint8 *)calloc(10000, 1);
_introTextSave = (uint8 *)calloc(10000, 1);
- _skyText->getText(77, _language);
+ _skyText->getText(77);
delay(8000); // keep revolution up for 8 seconds
@@ -455,7 +455,7 @@ void SkyState::checkCommands(uint32 *&cmdPtr) {
void SkyState::prepareText(uint32 *&cmdPtr) {
uint32 textNum = *(cmdPtr + 2);
- _skyText->getText(textNum, _language);
+ _skyText->getText(textNum);
_skyText->displayText(_introTextSpace, true, INTRO_TEXT_WIDTH, 255);
cmdPtr += 3;
}