aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/scalpel/scalpel_talk.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2015-07-24 19:42:41 -0400
committerPaul Gilbert2015-07-24 19:42:41 -0400
commitc6e18844038e087f373923731265beac58485a31 (patch)
tree72507862f9074d63c6b9fa556522197e38d667e5 /engines/sherlock/scalpel/scalpel_talk.cpp
parent8be83948b1485bb143dd05f7373ffeeb08a8638d (diff)
downloadscummvm-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/scalpel_talk.cpp')
-rw-r--r--engines/sherlock/scalpel/scalpel_talk.cpp2
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;