diff options
author | Strangerke | 2015-12-24 18:54:27 +0100 |
---|---|---|
committer | Strangerke | 2015-12-24 18:55:10 +0100 |
commit | c191efa62348c3f7950a0272ee816aa49c4dccce (patch) | |
tree | e3af4c4d13ae16cd46059d050267ac1dea0b181b /engines | |
parent | 92bc524984265071c012205f489747ef16caa7d3 (diff) | |
download | scummvm-rg350-c191efa62348c3f7950a0272ee816aa49c4dccce.tar.gz scummvm-rg350-c191efa62348c3f7950a0272ee816aa49c4dccce.tar.bz2 scummvm-rg350-c191efa62348c3f7950a0272ee816aa49c4dccce.zip |
LAB: Remove the 3rd parameter of drawMap (always false)
Diffstat (limited to 'engines')
-rw-r--r-- | engines/lab/lab.h | 2 | ||||
-rw-r--r-- | engines/lab/map.cpp | 20 |
2 files changed, 9 insertions, 13 deletions
diff --git a/engines/lab/lab.h b/engines/lab/lab.h index e3bd5e29bf..03deb948db 100644 --- a/engines/lab/lab.h +++ b/engines/lab/lab.h @@ -321,7 +321,7 @@ private: /** * Draws the map */ - void drawMap(uint16 curRoom, uint16 curMsg, uint16 floorNum, bool fadeOut, bool fadeIn); + void drawMap(uint16 curRoom, uint16 curMsg, uint16 floorNum, bool fadeIn); /** * Draws the text for the monitor. diff --git a/engines/lab/map.cpp b/engines/lab/map.cpp index bc766f4b3b..21a0830913 100644 --- a/engines/lab/map.cpp +++ b/engines/lab/map.cpp @@ -329,14 +329,10 @@ uint16 LabEngine::getLowerFloor(uint16 floorNum) { return kFloorNone; } -void LabEngine::drawMap(uint16 curRoom, uint16 curMsg, uint16 floorNum, bool fadeOut, bool fadeIn) { +void LabEngine::drawMap(uint16 curRoom, uint16 curMsg, uint16 floorNum, bool fadeIn) { _event->mouseHide(); - if (fadeOut) - _graphics->fade(false); - _graphics->rectFill(0, 0, _graphics->_screenWidth - 1, _graphics->_screenHeight - 1, 0); - _imgMap->drawImage(0, 0); _event->drawButtonList(&_mapButtonList); @@ -447,7 +443,7 @@ void LabEngine::processMap(uint16 curRoom) { if (upperFloor != kFloorNone) { curFloor = upperFloor; _graphics->fade(false); - drawMap(curRoom, curMsg, curFloor, false, false); + drawMap(curRoom, curMsg, curFloor, false); _graphics->fade(true); } } else if (msgCode == 2) { @@ -456,7 +452,7 @@ void LabEngine::processMap(uint16 curRoom) { if (lowerFloor != kFloorNone) { curFloor = lowerFloor; _graphics->fade(false); - drawMap(curRoom, curMsg, curFloor, false, false); + drawMap(curRoom, curMsg, curFloor, false); _graphics->fade(true); } } @@ -466,28 +462,28 @@ void LabEngine::processMap(uint16 curRoom) { curFloor = kFloorSurMaze; _graphics->fade(false); - drawMap(curRoom, curMsg, curFloor, false, false); + drawMap(curRoom, curMsg, curFloor, false); _graphics->fade(true); } else if ((curFloor == kFloorMiddle) && _utils->mapRectScale(358, 71, 452, 147).contains(mouseX, mouseY) && floorVisited(kFloorCarnival)) { curFloor = kFloorCarnival; _graphics->fade(false); - drawMap(curRoom, curMsg, curFloor, false, false); + drawMap(curRoom, curMsg, curFloor, false); _graphics->fade(true); } else if ((curFloor == kFloorMiddle) && _utils->mapRectScale(557, 325, 653, 401).contains(mouseX, mouseY) && floorVisited(kFloorMedMaze)) { curFloor = kFloorMedMaze; _graphics->fade(false); - drawMap(curRoom, curMsg, curFloor, false, false); + drawMap(curRoom, curMsg, curFloor, false); _graphics->fade(true); } else if ((curFloor == kFloorUpper) && _utils->mapRectScale(524, 97, 645, 207).contains(mouseX, mouseY) && floorVisited(kFloorHedgeMaze)) { curFloor = kFloorHedgeMaze; _graphics->fade(false); - drawMap(curRoom, curMsg, curFloor, false, false); + drawMap(curRoom, curMsg, curFloor, false); _graphics->fade(true); } else if (mouseX > _utils->mapScaleX(314)) { uint16 oldMsg = curMsg; @@ -550,7 +546,7 @@ void LabEngine::doMap(uint16 curRoom) { loadMapData(); _graphics->blackAllScreen(); _event->attachButtonList(&_mapButtonList); - drawMap(curRoom, curRoom, _maps[curRoom]._pageNumber, false, true); + drawMap(curRoom, curRoom, _maps[curRoom]._pageNumber, true); _event->mouseShow(); _graphics->screenUpdate(); processMap(curRoom); |