diff options
author | Strangerke | 2015-01-02 21:34:48 +0100 |
---|---|---|
committer | Strangerke | 2015-01-02 21:34:48 +0100 |
commit | f11032eb4e5591536b6565dcf7d7190777c868d8 (patch) | |
tree | bfdcd725c45c8db941c74060b8fe4192d3f71e33 /engines/access/martian | |
parent | b2a4999f3cbf8808a10ffe5a4cbb1b536e0011d5 (diff) | |
download | scummvm-rg350-f11032eb4e5591536b6565dcf7d7190777c868d8.tar.gz scummvm-rg350-f11032eb4e5591536b6565dcf7d7190777c868d8.tar.bz2 scummvm-rg350-f11032eb4e5591536b6565dcf7d7190777c868d8.zip |
ACCESS: MM - Fix menu position
Diffstat (limited to 'engines/access/martian')
-rw-r--r-- | engines/access/martian/martian_room.cpp | 4 |
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; |