aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/avalot.cpp
diff options
context:
space:
mode:
authoruruk2013-07-24 13:11:24 +0200
committeruruk2013-07-24 13:11:24 +0200
commitbddc0e5cbf1046aef3d6dfe543954477791d4b3b (patch)
tree1d6a71bd90b3604a22c5a42d2a425212cacf0078 /engines/avalanche/avalot.cpp
parent3058a02ab9d3c8791768fb7b60556e61d2414f8c (diff)
downloadscummvm-rg350-bddc0e5cbf1046aef3d6dfe543954477791d4b3b.tar.gz
scummvm-rg350-bddc0e5cbf1046aef3d6dfe543954477791d4b3b.tar.bz2
scummvm-rg350-bddc0e5cbf1046aef3d6dfe543954477791d4b3b.zip
AVALANCHE: Move handleMoveKey() from Avalot to Trip.
Diffstat (limited to 'engines/avalanche/avalot.cpp')
-rw-r--r--engines/avalanche/avalot.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/engines/avalanche/avalot.cpp b/engines/avalanche/avalot.cpp
index 0dcfd8420d..7b315b3c07 100644
--- a/engines/avalanche/avalot.cpp
+++ b/engines/avalanche/avalot.cpp
@@ -164,16 +164,12 @@ void Avalot::handleKeyDown(const Common::Event &event) {
case Common::KEYCODE_PAGEDOWN:
case Common::KEYCODE_HOME:
case Common::KEYCODE_END:
- handleMoveKey(event); // Fallthroughs are intended.
+ _vm->_trip.handleMoveKey(event); // Fallthroughs are intended.
break;
}
}
-void Avalot::handleMoveKey(const Common::Event &event) {
- warning("STUB: Avalot::handleMoveKey()");
-}
-
void Avalot::run(Common::String arg) {