[Scummvm-git-logs] scummvm master -> 5a5ae3e39be8f8ed5397572c0609d6ca3503392a
antoniou79
noreply at scummvm.org
Thu May 7 18:40:56 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
5a5ae3e39b MYST3: Allow free camera movement after placing symbol on pedestal
Commit: 5a5ae3e39be8f8ed5397572c0609d6ca3503392a
https://github.com/scummvm/scummvm/commit/5a5ae3e39be8f8ed5397572c0609d6ca3503392a
Author: antoniou79 (a.antoniou79 at gmail.com)
Date: 2026-05-07T21:39:46+03:00
Commit Message:
MYST3: Allow free camera movement after placing symbol on pedestal
Fixes #16758
Changed paths:
engines/myst3/myst3.cpp
diff --git a/engines/myst3/myst3.cpp b/engines/myst3/myst3.cpp
index 21a1390534c..ed06cf62d7c 100644
--- a/engines/myst3/myst3.cpp
+++ b/engines/myst3/myst3.cpp
@@ -1529,6 +1529,9 @@ void Myst3Engine::dragSymbol(uint16 var, uint16 id) {
HotSpot *hovered = getHoveredHotspot(nodeData, var);
if (hovered) {
_cursor->setVisible(false);
+ // enable free camera movement after placing the symbol on the pedestal
+ // fix for bug #16758
+ _cursor->lockPosition(true);
_scriptEngine->run(&hovered->script);
_cursor->setVisible(true);
}
More information about the Scummvm-git-logs
mailing list