aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/avalanche.cpp
diff options
context:
space:
mode:
authorStrangerke2013-09-21 18:06:37 +0200
committerStrangerke2013-09-21 18:06:37 +0200
commit350d622324581fe0ceb2eee38d4a7750690a0cf0 (patch)
treef8632ed52ce1cdcd74390081b721699af152677c /engines/avalanche/avalanche.cpp
parent628c5bb5155e8f1de23763c1e300aaa351aca871 (diff)
downloadscummvm-rg350-350d622324581fe0ceb2eee38d4a7750690a0cf0.tar.gz
scummvm-rg350-350d622324581fe0ceb2eee38d4a7750690a0cf0.tar.bz2
scummvm-rg350-350d622324581fe0ceb2eee38d4a7750690a0cf0.zip
AVALANCHE: rename scrolls to dialogs
Diffstat (limited to 'engines/avalanche/avalanche.cpp')
-rw-r--r--engines/avalanche/avalanche.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/avalanche/avalanche.cpp b/engines/avalanche/avalanche.cpp
index f140ae90b6..d7a07fe41d 100644
--- a/engines/avalanche/avalanche.cpp
+++ b/engines/avalanche/avalanche.cpp
@@ -63,7 +63,7 @@ AvalancheEngine::~AvalancheEngine() {
delete _avalot;
delete _pingo;
- delete _scrolls;
+ delete _dialogs;
delete _lucerna;
delete _background;
delete _sequence;
@@ -83,7 +83,7 @@ Common::ErrorCode AvalancheEngine::initialize() {
_avalot = new Avalot(this);
_gyro = new Gyro(this);
_pingo = new Pingo(this);
- _scrolls = new Scrolls(this);
+ _dialogs = new Dialogs(this);
_lucerna = new Lucerna(this);
_background = new Background(this);
_sequence = new Sequence(this);
@@ -95,7 +95,7 @@ Common::ErrorCode AvalancheEngine::initialize() {
_sound = new SoundHandler(this);
_graphics->init();
- _scrolls->init();
+ _dialogs->init();
_lucerna->init();
_acci->init();
_parser->init();
@@ -453,10 +453,10 @@ bool AvalancheEngine::loadGame(const int16 slot) {
_background->updateBackgroundSprites();
Common::String tmpStr = Common::String::format("%cLoaded: %c%s.ASG%c%c%c%s%c%csaved on %s.",
- Scrolls::kControlItalic, Scrolls::kControlRoman, description.c_str(), Scrolls::kControlCenter,
- Scrolls::kControlNewLine, Scrolls::kControlNewLine, _gyro->_roomnName.c_str(), Scrolls::kControlNewLine,
- Scrolls::kControlNewLine, expandDate(t.tm_mday, t.tm_mon, t.tm_year).c_str());
- _scrolls->displayText(tmpStr);
+ Dialogs::kControlItalic, Dialogs::kControlRoman, description.c_str(), Dialogs::kControlCenter,
+ Dialogs::kControlNewLine, Dialogs::kControlNewLine, _gyro->_roomnName.c_str(), Dialogs::kControlNewLine,
+ Dialogs::kControlNewLine, expandDate(t.tm_mday, t.tm_mon, t.tm_year).c_str());
+ _dialogs->displayText(tmpStr);
AnimationType *avvy = &_animation->_sprites[0];
if (avvy->_quick && avvy->_visible)