aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche
diff options
context:
space:
mode:
Diffstat (limited to 'engines/avalanche')
-rw-r--r--engines/avalanche/lucerna2.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/engines/avalanche/lucerna2.cpp b/engines/avalanche/lucerna2.cpp
index 0fd7feea8b..66036e052e 100644
--- a/engines/avalanche/lucerna2.cpp
+++ b/engines/avalanche/lucerna2.cpp
@@ -46,6 +46,8 @@
#include "common/system.h"
+#include "graphics/palette.h"
+
//#include "dropdown.h"
//#include "basher.h"
@@ -791,8 +793,8 @@ void Lucerna::load_digits() { /* Load the scoring digits & rwlites */
}
for (byte ff = 0; ff < 9; ff ++) {
- _vm->_gyro.digit[ff] = new byte[rwlitesize];
- f.read(_vm->_gyro.digit[ff], rwlitesize);
+ _vm->_gyro.rwlite[ff] = new byte[rwlitesize];
+ f.read(_vm->_gyro.rwlite[ff], rwlitesize);
}
f.close();
@@ -949,7 +951,7 @@ void Lucerna::checkclick() {
}
void Lucerna::mouse_init() {
- warning("STUB: Lucerna::mouse_init()");
+ _vm->_gyro.wait();
}
void Lucerna::mousepage(uint16 page_) {