[Scummvm-git-logs] scummvm master -> 261dee44249df6a1d2ffbaae3cdb7c2a445cb230
alxpnv
a04198622 at gmail.com
Mon Jun 21 11:59:11 UTC 2021
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:
261dee4424 ASYLUM: make sure the cursor is visible at puzzle start
Commit: 261dee44249df6a1d2ffbaae3cdb7c2a445cb230
https://github.com/scummvm/scummvm/commit/261dee44249df6a1d2ffbaae3cdb7c2a445cb230
Author: alxpnv (alxpnv22 at yahoo.com)
Date: 2021-06-21T14:58:59+03:00
Commit Message:
ASYLUM: make sure the cursor is visible at puzzle start
Changed paths:
engines/asylum/puzzles/hivemachine.cpp
engines/asylum/puzzles/pipes.cpp
diff --git a/engines/asylum/puzzles/hivemachine.cpp b/engines/asylum/puzzles/hivemachine.cpp
index a8c64ef84c..2b1b578767 100644
--- a/engines/asylum/puzzles/hivemachine.cpp
+++ b/engines/asylum/puzzles/hivemachine.cpp
@@ -63,6 +63,8 @@ bool PuzzleHiveMachine::init(const AsylumEvent &) {
getScreen()->setGammaLevel(getWorld()->graphicResourceIds[9]);
_rectIndex = -2;
+ getCursor()->show();
+
return true;
}
diff --git a/engines/asylum/puzzles/pipes.cpp b/engines/asylum/puzzles/pipes.cpp
index 6093d89fbc..d89dc41871 100644
--- a/engines/asylum/puzzles/pipes.cpp
+++ b/engines/asylum/puzzles/pipes.cpp
@@ -319,6 +319,8 @@ bool PuzzlePipes::init(const AsylumEvent &) {
startUpWater();
(void)checkFlags();
+ getCursor()->show();
+
return true;
}
More information about the Scummvm-git-logs
mailing list