aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/gyro.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/avalanche/gyro.cpp')
-rw-r--r--engines/avalanche/gyro.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/avalanche/gyro.cpp b/engines/avalanche/gyro.cpp
index e338ecddbc..3d86d34b38 100644
--- a/engines/avalanche/gyro.cpp
+++ b/engines/avalanche/gyro.cpp
@@ -30,7 +30,7 @@
#include "avalanche/avalanche.h"
#include "avalanche/gyro.h"
#include "avalanche/pingo.h"
-#include "avalanche/scrolls.h"
+#include "avalanche/dialogs.h"
#include "avalanche/lucerna.h"
#include "avalanche/acci.h"
#include "avalanche/animation.h"
@@ -311,7 +311,7 @@ void Gyro::newGame() {
_alive = true;
resetVariables();
- _vm->_scrolls->setBubbleStateNatural();
+ _vm->_dialogs->setBubbleStateNatural();
_spareEvening = "answer a questionnaire";
_favouriteDrink = "beer";
@@ -366,7 +366,7 @@ bool Gyro::setFlag(char x) {
bool Gyro::decreaseMoney(uint16 howmuchby) {
_money -= howmuchby;
if (_money < 0) {
- _vm->_scrolls->displayScrollChain('Q', 2); // "You are now denariusless!"
+ _vm->_dialogs->displayScrollChain('Q', 2); // "You are now denariusless!"
_vm->_lucerna->gameOver();
return false;
} else