diff options
author | Paul Gilbert | 2014-08-17 20:32:25 -0400 |
---|---|---|
committer | Paul Gilbert | 2014-08-17 20:32:25 -0400 |
commit | be4639802c469c8b85e1f801a7cac1897a18863b (patch) | |
tree | 7f31d80fa2809a063e3e034c7e12fee616a9f510 | |
parent | 483bca3d96b7012774d13875e78cfd8b649657f7 (diff) | |
download | scummvm-rg350-be4639802c469c8b85e1f801a7cac1897a18863b.tar.gz scummvm-rg350-be4639802c469c8b85e1f801a7cac1897a18863b.tar.bz2 scummvm-rg350-be4639802c469c8b85e1f801a7cac1897a18863b.zip |
ACCESS: Fix positioning of bubble boxes
-rw-r--r-- | engines/access/bubble_box.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/access/bubble_box.cpp b/engines/access/bubble_box.cpp index b896e5ef1a..4bd4b74588 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; |