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

This commit is contained in:
AndywinXp
2023-01-22 23:11:25 +01:00
parent 96a800ef5c
commit cc2b4de6ec
+1 -1
View File
@@ -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;