From be4639802c469c8b85e1f801a7cac1897a18863b Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 17 Aug 2014 20:32:25 -0400 Subject: [PATCH] ACCESS: Fix positioning of bubble boxes --- engines/access/bubble_box.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/access/bubble_box.cpp b/engines/access/bubble_box.cpp index b896e5ef1a02..4bd4b745883e 100644 --- a/engines/access/bubble_box.cpp +++ b/engines/access/bubble_box.cpp @@ -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;