aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/verbs.cpp
diff options
context:
space:
mode:
authorMax Horn2007-09-08 11:15:27 +0000
committerMax Horn2007-09-08 11:15:27 +0000
commit0cccbb29d63a03582b7c3cd89265296a46530414 (patch)
treede32fb80d0d81baa413318201cb56d7281690c9b /engines/scumm/verbs.cpp
parent89bbbe53ac9adc19bc33e7895ca1eb32f75607fe (diff)
downloadscummvm-rg350-0cccbb29d63a03582b7c3cd89265296a46530414.tar.gz
scummvm-rg350-0cccbb29d63a03582b7c3cd89265296a46530414.tar.bz2
scummvm-rg350-0cccbb29d63a03582b7c3cd89265296a46530414.zip
Some cleanup (yay for whomever had the brilliant idea to let SVN work over HTTPS and hence through proxies&firewalls :)
svn-id: r28877
Diffstat (limited to 'engines/scumm/verbs.cpp')
-rw-r--r--engines/scumm/verbs.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/scumm/verbs.cpp b/engines/scumm/verbs.cpp
index 56ee454240..953ed90a1a 100644
--- a/engines/scumm/verbs.cpp
+++ b/engines/scumm/verbs.cpp
@@ -86,7 +86,7 @@ static const VerbSettings v0VerbTable_German[] = {
};
void ScummEngine_v0::resetVerbs() {
- VirtScreen *virt = &virtscr[kVerbVirtScreen];
+ VirtScreen *virt = &_virtscr[kVerbVirtScreen];
VerbSlot *vs;
int i;
@@ -121,7 +121,7 @@ void ScummEngine_v0::resetVerbs() {
}
void ScummEngine_v0::setNewKidVerbs() {
- VirtScreen *virt = &virtscr[kVerbVirtScreen];
+ VirtScreen *virt = &_virtscr[kVerbVirtScreen];
VerbSlot *vs;
int i;
@@ -283,7 +283,7 @@ void ScummEngine_v2::initNESMouseOver() {
}
void ScummEngine_v2::checkV2MouseOver(Common::Point pos) {
- VirtScreen *vs = &virtscr[kVerbVirtScreen];
+ VirtScreen *vs = &_virtscr[kVerbVirtScreen];
Common::Rect rect;
byte *ptr, *dst;
int i, x, y, new_box = -1;
@@ -346,7 +346,7 @@ void ScummEngine_v2::checkV2Inventory(int x, int y) {
int inventoryArea = (_game.platform == Common::kPlatformNES) ? 48: 32;
int object = 0;
- y -= virtscr[kVerbVirtScreen].topline;
+ y -= _virtscr[kVerbVirtScreen].topline;
if ((y < inventoryArea) || !(_mouseAndKeyboardStat & MBS_LEFT_CLICK))
return;
@@ -391,7 +391,7 @@ void ScummEngine_v2::checkV2Inventory(int x, int y) {
}
void ScummEngine_v2::redrawV2Inventory() {
- VirtScreen *vs = &virtscr[kVerbVirtScreen];
+ VirtScreen *vs = &_virtscr[kVerbVirtScreen];
int i;
int max_inv;
Common::Rect inventoryBox;
@@ -405,7 +405,7 @@ void ScummEngine_v2::redrawV2Inventory() {
// Clear on all invocations
inventoryBox.top = vs->topline + inventoryArea;
- inventoryBox.bottom = vs->topline + virtscr[kVerbVirtScreen].h;
+ inventoryBox.bottom = vs->topline + vs->h;
inventoryBox.left = 0;
inventoryBox.right = vs->w;
restoreBackground(inventoryBox);