LAB: Hide the mouse cursor while fading when closing the map

This commit is contained in:
Filippos Karapetis 2016-01-14 01:17:42 +02:00
parent 1d4a62a028
commit 4f0985c2de

View File

@ -541,12 +541,13 @@ void LabEngine::doMap() {
_event->mouseShow();
_graphics->screenUpdate();
processMap(_roomNum);
_event->mouseHide();
_event->attachButtonList(nullptr);
_graphics->fade(false);
_graphics->blackAllScreen();
_graphics->rectFill(0, 0, _graphics->_screenWidth - 1, _graphics->_screenHeight - 1, 0);
freeMapData();
_graphics->blackAllScreen();
_event->mouseShow();
_graphics->screenUpdate();
}