[Scummvm-git-logs] scummvm branch-2-7 -> b46a044bc5ab6713924b1d2626cd1ac6e68ff040

AndywinXp noreply at scummvm.org
Sun Jan 22 22:12:44 UTC 2023


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
b46a044bc5 SCUMM: DOTT/GUI: Fix cursor not reappearing when loading a savegame


Commit: b46a044bc5ab6713924b1d2626cd1ac6e68ff040
    https://github.com/scummvm/scummvm/commit/b46a044bc5ab6713924b1d2626cd1ac6e68ff040
Author: AndywinXp (andywinxp at gmail.com)
Date: 2023-01-22T23:12:30+01:00

Commit Message:
SCUMM: DOTT/GUI: Fix cursor not reappearing when loading a savegame

Changed paths:
    engines/scumm/gfx_gui.cpp


diff --git a/engines/scumm/gfx_gui.cpp b/engines/scumm/gfx_gui.cpp
index 4e20d034f08..923c3ebab90 100644
--- a/engines/scumm/gfx_gui.cpp
+++ b/engines/scumm/gfx_gui.cpp
@@ -1750,7 +1750,7 @@ void ScummEngine::restoreCursorPostMenu() {
 		setCursorFromBuffer(_curGrabbedCursor, _curCursorWidth, _curCursorHeight, _curCursorWidth, true);
 		free(_curGrabbedCursor);
 		_curGrabbedCursor = nullptr;
-	} else if (_game.version == 6) {
+	} else if (_game.version == 6 && _game.id != GID_TENTACLE) {
 		setCursorHotspot(_curCursorHotspotX, _curCursorHotspotY);
 		_cursor.width = _curCursorWidth;
 		_cursor.height = _curCursorHeight;




More information about the Scummvm-git-logs mailing list