diff options
author | Paul Gilbert | 2015-07-24 19:42:41 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-07-24 19:42:41 -0400 |
commit | c6e18844038e087f373923731265beac58485a31 (patch) | |
tree | 72507862f9074d63c6b9fa556522197e38d667e5 /engines/sherlock/scalpel | |
parent | 8be83948b1485bb143dd05f7373ffeeb08a8638d (diff) | |
download | scummvm-rg350-c6e18844038e087f373923731265beac58485a31.tar.gz scummvm-rg350-c6e18844038e087f373923731265beac58485a31.tar.bz2 scummvm-rg350-c6e18844038e087f373923731265beac58485a31.zip |
SHERLOCK: RT: Rendering fixes for Options & Quit dialogs
Diffstat (limited to 'engines/sherlock/scalpel')
-rw-r--r-- | engines/sherlock/scalpel/scalpel_talk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/scalpel/scalpel_talk.cpp b/engines/sherlock/scalpel/scalpel_talk.cpp index aa0a2f48b4..f9a10ebc70 100644 --- a/engines/sherlock/scalpel/scalpel_talk.cpp +++ b/engines/sherlock/scalpel/scalpel_talk.cpp @@ -432,7 +432,7 @@ OpcodeReturn ScalpelTalk::cmdMoveMouse(const byte *&str) { Events &events = *_vm->_events; ++str; - events.moveMouse(Common::Point((str[0] - 1) * 256 + str[1] - 1, str[2])); + events.warpMouse(Common::Point((str[0] - 1) * 256 + str[1] - 1, str[2])); if (_talkToAbort) return RET_EXIT; str += 3; |