aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/gyro2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/avalanche/gyro2.cpp')
-rw-r--r--engines/avalanche/gyro2.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/avalanche/gyro2.cpp b/engines/avalanche/gyro2.cpp
index 9be471c9fd..8bfa53f616 100644
--- a/engines/avalanche/gyro2.cpp
+++ b/engines/avalanche/gyro2.cpp
@@ -33,7 +33,6 @@
#include "avalanche/pingo2.h"
#include "avalanche/scrolls2.h"
#include "avalanche/lucerna2.h"
-#include "avalanche/visa2.h"
#include "avalanche/acci2.h"
#include "avalanche/animation.h"
@@ -385,7 +384,7 @@ void Gyro::forceNumlock() {
bool Gyro::decreaseMoney(uint16 howmuchby) {
_money -= howmuchby;
if (_money < 0) {
- _vm->_visa->displayScrollChain('Q', 2); // "You are now denariusless!"
+ _vm->_scrolls->displayScrollChain('Q', 2); // "You are now denariusless!"
_vm->_lucerna->gameOver();
return false;
} else