diff options
author | uruk | 2013-08-26 09:54:40 +0200 |
---|---|---|
committer | uruk | 2013-08-26 09:54:40 +0200 |
commit | e36d90f8b8a10f9820975088dea1992b940289a6 (patch) | |
tree | 09fe768d1f0a092fdbefef0365cec09d1242ea0b /engines/avalanche | |
parent | f2049db1db474d52ed5a85f3a37fbdb5d892301e (diff) | |
download | scummvm-rg350-e36d90f8b8a10f9820975088dea1992b940289a6.tar.gz scummvm-rg350-e36d90f8b8a10f9820975088dea1992b940289a6.tar.bz2 scummvm-rg350-e36d90f8b8a10f9820975088dea1992b940289a6.zip |
AVALANCHE: Repair Lucerna::callverb().
Diffstat (limited to 'engines/avalanche')
-rw-r--r-- | engines/avalanche/lucerna2.cpp | 2 | ||||
-rw-r--r-- | engines/avalanche/lucerna2.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/avalanche/lucerna2.cpp b/engines/avalanche/lucerna2.cpp index 3249f1b7b1..2477db1520 100644 --- a/engines/avalanche/lucerna2.cpp +++ b/engines/avalanche/lucerna2.cpp @@ -66,7 +66,7 @@ void Lucerna::init() { else _vm->_gyro->atkey = "alt-"; } -void Lucerna::callverb(char n) { +void Lucerna::callverb(byte n) { if (n == _vm->_acci->pardon) { _vm->_scrolls->display(Common::String("The f5 key lets you do a particular action in certain ") + "situations. However, at the moment there is nothing " + diff --git a/engines/avalanche/lucerna2.h b/engines/avalanche/lucerna2.h index 854c01cc28..451bd73793 100644 --- a/engines/avalanche/lucerna2.h +++ b/engines/avalanche/lucerna2.h @@ -46,7 +46,7 @@ public: void init(); - void callverb(char n); + void callverb(byte n); void draw_also_lines(); |