aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure
diff options
context:
space:
mode:
Diffstat (limited to 'engines/macventure')
-rw-r--r--engines/macventure/gui.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/engines/macventure/gui.cpp b/engines/macventure/gui.cpp
index 9671dc0f5f..1c626fef81 100644
--- a/engines/macventure/gui.cpp
+++ b/engines/macventure/gui.cpp
@@ -683,11 +683,14 @@ void Gui::drawObjectsInWindow(WindowReference target, Graphics::ManagedSurface *
surface, pos.x, pos.y, kBlitOR);
// For test
+ /*
surface->frameRect(Common::Rect(
pos.x,
pos.y,
- pos.x + _assets[child]->getWidth(),
- pos.y + _assets[child]->getHeight()), kColorGreen);
+ pos.x + _assets[child]->getWidth() + 1,
+ pos.y + _assets[child]->getHeight() + 1), kColorGreen);
+ */
+
}
}
@@ -736,7 +739,6 @@ void Gui::drawDraggedObject() {
}
}
-
void Gui::updateWindow(WindowReference winID, bool containerOpen) {
if (winID == kNoWindow) return;
if (winID == kSelfWindow || containerOpen) {