diff options
-rw-r--r-- | engines/access/access.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/access/access.cpp b/engines/access/access.cpp index 01bb3e3845..a0de5c8e7c 100644 --- a/engines/access/access.cpp +++ b/engines/access/access.cpp @@ -341,9 +341,9 @@ void AccessEngine::plotList1() { } } else { if (ie._flags & 2) { - _buffer2.plotB(frame, Common::Point(bounds.left, bounds.top)); + _buffer2.plotB(frame, Common::Point(destBounds.left, destBounds.top)); } else { - _buffer2.plotF(frame, Common::Point(bounds.left, bounds.top)); + _buffer2.plotF(frame, Common::Point(destBounds.left, destBounds.top)); } } } |