aboutsummaryrefslogtreecommitdiff
path: root/engines/access
diff options
context:
space:
mode:
authorStrangerke2015-01-02 21:34:48 +0100
committerStrangerke2015-01-02 21:34:48 +0100
commitf11032eb4e5591536b6565dcf7d7190777c868d8 (patch)
treebfdcd725c45c8db941c74060b8fe4192d3f71e33 /engines/access
parentb2a4999f3cbf8808a10ffe5a4cbb1b536e0011d5 (diff)
downloadscummvm-rg350-f11032eb4e5591536b6565dcf7d7190777c868d8.tar.gz
scummvm-rg350-f11032eb4e5591536b6565dcf7d7190777c868d8.tar.bz2
scummvm-rg350-f11032eb4e5591536b6565dcf7d7190777c868d8.zip
ACCESS: MM - Fix menu position
Diffstat (limited to 'engines/access')
-rw-r--r--engines/access/martian/martian_room.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/access/martian/martian_room.cpp b/engines/access/martian/martian_room.cpp
index 118679b2d8..38361e519a 100644
--- a/engines/access/martian/martian_room.cpp
+++ b/engines/access/martian/martian_room.cpp
@@ -107,8 +107,8 @@ void MartianRoom::roomMenu() {
_vm->_screen->saveScreen();
_vm->_screen->setDisplayScan();
_vm->_destIn = _vm->_screen; // TODO: Redundant
- _vm->_screen->plotImage(spr, 0, Common::Point(0, 177));
- _vm->_screen->plotImage(spr, 1, Common::Point(143, 177));
+ _vm->_screen->plotImage(spr, 0, Common::Point(5, 184));
+ _vm->_screen->plotImage(spr, 1, Common::Point(155, 184));
_vm->_screen->restoreScreen();
delete spr;