From 3ce5276b9cfe776fde752216b26b149e96543c1f Mon Sep 17 00:00:00 2001 From: Colin Snover Date: Wed, 6 Sep 2017 16:35:47 -0500 Subject: SCI32: Remove unnecessary calls to hide the virtual hardware cursor --- engines/sci/graphics/cursor32.cpp | 2 -- 1 file changed, 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); -- cgit v1.2.3