aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/gui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/macventure/gui.cpp')
-rw-r--r--engines/macventure/gui.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/macventure/gui.cpp b/engines/macventure/gui.cpp
index 13f0a9d692..6a30985b74 100644
--- a/engines/macventure/gui.cpp
+++ b/engines/macventure/gui.cpp
@@ -1270,6 +1270,12 @@ bool MacVenture::Gui::processOutConsoleEvents(WindowClick click, Common::Event &
if (_engine->needsClickToContinue())
return true;
+ debug("OutConsoleEvent: %d", click);
+ if (click == kBorderScrollUp) {
+ _consoleText->scrollUp();
+ return true;
+ }
+
return getWindowData(kOutConsoleWindow).visible;
}