From 5ea40b6778726f80e53a409f7cc8c5d75709aca3 Mon Sep 17 00:00:00 2001 From: Joost Peters Date: Tue, 29 Apr 2003 19:52:24 +0000 Subject: added lowTextManager(), moved language from getText() to SkyText constructor + some cleanup svn-id: r7202 --- sky/intro.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sky/intro.cpp') 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; } -- cgit v1.2.3