Skip to content

Commit

Permalink
ACCESS: Fix positioning of bubble boxes
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Aug 18, 2014
1 parent 483bca3 commit be46398
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/access/bubble_box.cpp
Expand Up @@ -85,7 +85,7 @@ void BubbleBox::calcBubble(const Common::String &msg) {
}

// Start of with a rect with the given starting x and y
Common::Rect bounds(printOrg.x - 2, printOrg.y, printOrg.x - 2, printOrg.y);
Common::Rect bounds(printOrg.x - 2, printOrg.y - 10, printOrg.x - 2, printOrg.y - 10);

// Loop through getting lines
Common::String s = msg;
Expand Down

0 comments on commit be46398

Please sign in to comment.