diff options
author | Eugene Sandulenko | 2016-08-30 23:08:58 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-08-30 23:08:58 +0200 |
commit | f6c29eef4667830a49bd6cc2b811a3f23e310d6a (patch) | |
tree | 299336bb3ef4262f8851fa249d50343abb9b5115 | |
parent | f490fb811a64566e9f8d9471084c1b43c958d3c0 (diff) | |
download | scummvm-rg350-f6c29eef4667830a49bd6cc2b811a3f23e310d6a.tar.gz scummvm-rg350-f6c29eef4667830a49bd6cc2b811a3f23e310d6a.tar.bz2 scummvm-rg350-f6c29eef4667830a49bd6cc2b811a3f23e310d6a.zip |
FULLPIPE: Fix jumping on Map
-rw-r--r-- | engines/fullpipe/modal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/modal.cpp b/engines/fullpipe/modal.cpp index 382cdfd688..aab4843067 100644 --- a/engines/fullpipe/modal.cpp +++ b/engines/fullpipe/modal.cpp @@ -344,7 +344,7 @@ bool ModalMap::handleMessage(ExCommand *cmd) { case 29: _flag = 1; _mouseX = g_fp->_mouseScreenPos.x; - _mouseY = g_fp->_mouseScreenPos.x; + _mouseY = g_fp->_mouseScreenPos.y; _field_38 = _rect2.left; _field_3C = _rect2.top; |