Skip to content

Commit

Permalink
SHERLOCK: Fix display of place names on overhead map
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Apr 30, 2015
1 parent 0ef0b45 commit e3881cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engines/sherlock/map.cpp
Expand Up @@ -355,7 +355,8 @@ void Map::saveTopLine() {
*/
void Map::eraseTopLine() {
Screen &screen = *_vm->_screen;
screen.blitFrom(_topLine, Common::Point(0, 0));
screen._backBuffer1.blitFrom(_topLine, Common::Point(0, 0));
screen.slamArea(0, 0, SHERLOCK_SCREEN_WIDTH, _topLine.h);
}

/**
Expand Down

0 comments on commit e3881cc

Please sign in to comment.