diff options
author | Paul Gilbert | 2014-08-30 14:19:49 -0400 |
---|---|---|
committer | Paul Gilbert | 2014-08-30 14:19:49 -0400 |
commit | 67e52da359e41c350f8d79cfae3453ca70b8e6d3 (patch) | |
tree | 28c00238d6a619dcbd97b78290e79276d6a024fe /engines | |
parent | d38839d64209248e07b5464be8d44fa19ae93b92 (diff) | |
download | scummvm-rg350-67e52da359e41c350f8d79cfae3453ca70b8e6d3.tar.gz scummvm-rg350-67e52da359e41c350f8d79cfae3453ca70b8e6d3.tar.bz2 scummvm-rg350-67e52da359e41c350f8d79cfae3453ca70b8e6d3.zip |
ACCESS: Fix non-scaled sprites appearing on-screen in scrolling scenes
Diffstat (limited to 'engines')
-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)); } } } |