aboutsummaryrefslogtreecommitdiff
path: root/engines/access/bubble_box.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2014-08-17 22:09:03 -0400
committerPaul Gilbert2014-08-17 22:09:03 -0400
commit38acce33fd95171a5d3a7a00cad57bb4a5711bad (patch)
treeabb39a59082e356c761b80ea83c6de65d0d358aa /engines/access/bubble_box.cpp
parenta8a7018926f68d4792f3114ea8496ae721c2490c (diff)
downloadscummvm-rg350-38acce33fd95171a5d3a7a00cad57bb4a5711bad.tar.gz
scummvm-rg350-38acce33fd95171a5d3a7a00cad57bb4a5711bad.tar.bz2
scummvm-rg350-38acce33fd95171a5d3a7a00cad57bb4a5711bad.zip
ACCESS: Add updateTimers so bubble boxes can be removed
Diffstat (limited to 'engines/access/bubble_box.cpp')
-rw-r--r--engines/access/bubble_box.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/access/bubble_box.cpp b/engines/access/bubble_box.cpp
index 5a17b3b1a3..6ea7ed8a0b 100644
--- a/engines/access/bubble_box.cpp
+++ b/engines/access/bubble_box.cpp
@@ -198,9 +198,9 @@ void BubbleBox::doBox(int item, int box) {
delete[] iconData;
// Set the up boundaries and color to use for the box background
- _vm->_screen->_orgX1 = _bounds.left;
+ _vm->_screen->_orgX1 = _bounds.left - 2;
_vm->_screen->_orgY1 = _bounds.top;
- _vm->_screen->_orgX2 = _bounds.right;
+ _vm->_screen->_orgX2 = _bounds.right - 2;
_vm->_screen->_orgY2 = _bounds.bottom;
_vm->_screen->_lColor = 1;