ACCESS: Fix positioning of bubble boxes

This commit is contained in:
Paul Gilbert 2014-08-17 20:32:25 -04:00
parent 483bca3d96
commit be4639802c

View File

@ -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;