aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Snover2017-09-06 16:35:47 -0500
committerColin Snover2017-09-08 16:02:32 -0500
commit3ce5276b9cfe776fde752216b26b149e96543c1f (patch)
treeef1a04a25c6b75932a1c1d3f3e124810c2679dce
parent17ff41b7400d5983daf899ead0c2657166d3c84a (diff)
downloadscummvm-rg350-3ce5276b9cfe776fde752216b26b149e96543c1f.tar.gz
scummvm-rg350-3ce5276b9cfe776fde752216b26b149e96543c1f.tar.bz2
scummvm-rg350-3ce5276b9cfe776fde752216b26b149e96543c1f.zip
SCI32: Remove unnecessary calls to hide the virtual hardware cursor
-rw-r--r--engines/sci/graphics/cursor32.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/engines/sci/graphics/cursor32.cpp b/engines/sci/graphics/cursor32.cpp
index b374e9d512..1db74024b7 100644
--- a/engines/sci/graphics/cursor32.cpp
+++ b/engines/sci/graphics/cursor32.cpp
@@ -35,7 +35,6 @@ GfxCursor32::GfxCursor32() :
_hideCount(0),
_position(0, 0),
_writeToVMAP(false) {
- CursorMan.showMouse(false);
}
void GfxCursor32::init(const Buffer &vmap) {
@@ -46,7 +45,6 @@ void GfxCursor32::init(const Buffer &vmap) {
}
GfxCursor32::~GfxCursor32() {
- CursorMan.showMouse(true);
free(_cursor.data);
free(_cursorBack.data);
free(_drawBuff1.data);