aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/help.cpp
diff options
context:
space:
mode:
authoruruk2014-02-25 21:56:32 +0100
committeruruk2014-02-25 21:56:32 +0100
commite15dafb9e4f15a1c9095b02bca0d240de9bd2f09 (patch)
tree9dcbe48e49b710bcfae4e054df0be4f06c26dc88 /engines/avalanche/help.cpp
parent91146e51f533b7258a315e754aabaff0b9af5d97 (diff)
downloadscummvm-rg350-e15dafb9e4f15a1c9095b02bca0d240de9bd2f09.tar.gz
scummvm-rg350-e15dafb9e4f15a1c9095b02bca0d240de9bd2f09.tar.bz2
scummvm-rg350-e15dafb9e4f15a1c9095b02bca0d240de9bd2f09.zip
AVALANCHE: Rework use of Common::Rect.
Now the right and bottom coordinates of the rectangles aren't included in them.
Diffstat (limited to 'engines/avalanche/help.cpp')
-rw-r--r--engines/avalanche/help.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/avalanche/help.cpp b/engines/avalanche/help.cpp
index 5d3247ba9a..b24f6c40d8 100644
--- a/engines/avalanche/help.cpp
+++ b/engines/avalanche/help.cpp
@@ -66,8 +66,8 @@ void Help::switchPage(byte which) {
Common::String title = getLine(file);
- _vm->_graphics->drawFilledRectangle(Common::Rect(0, 0, 639, 199), kColorBlue);
- _vm->_graphics->drawFilledRectangle(Common::Rect(8, 40, 449, 199), kColorWhite);
+ _vm->_graphics->drawFilledRectangle(Common::Rect(0, 0, 640, 200), kColorBlue);
+ _vm->_graphics->drawFilledRectangle(Common::Rect(8, 40, 450, 200), kColorWhite);
byte index = file.readByte();
_vm->_graphics->helpDrawButton(-177, index);