diff options
author | Bastien Bouclet | 2016-02-13 18:13:33 +0100 |
---|---|---|
committer | Bastien Bouclet | 2016-02-13 18:13:33 +0100 |
commit | 94e5804b84e3e165055fd210f002279d0deb1bb0 (patch) | |
tree | 87c2b422f982971d204b86d39de2a5086f840c3a | |
parent | 6d8eebbf7b7229c93b51e1f82c1cf980a4a7c79e (diff) | |
download | scummvm-rg350-94e5804b84e3e165055fd210f002279d0deb1bb0.tar.gz scummvm-rg350-94e5804b84e3e165055fd210f002279d0deb1bb0.tar.bz2 scummvm-rg350-94e5804b84e3e165055fd210f002279d0deb1bb0.zip |
MOHAWK: Fix the cursor staying black when changing of Myst stack
-rw-r--r-- | engines/mohawk/myst.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/mohawk/myst.cpp b/engines/mohawk/myst.cpp index 787030c37c..dc6fe9a1eb 100644 --- a/engines/mohawk/myst.cpp +++ b/engines/mohawk/myst.cpp @@ -387,6 +387,7 @@ void MohawkEngine_Myst::changeToStack(uint16 stack, uint16 card, uint16 linkSrcS // Fill screen with black and empty cursor _cursor->setCursor(0); + _currentCursor = 0; if (getFeatures() & GF_ME) _system->fillScreen(_system->getScreenFormat().RGBToColor(0, 0, 0)); |