aboutsummaryrefslogtreecommitdiff
path: root/engines/access/asurface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/access/asurface.cpp')
-rw-r--r--engines/access/asurface.cpp18
1 files changed, 17 insertions, 1 deletions
diff --git a/engines/access/asurface.cpp b/engines/access/asurface.cpp
index a9d97aa48c..3a381a10e5 100644
--- a/engines/access/asurface.cpp
+++ b/engines/access/asurface.cpp
@@ -168,7 +168,10 @@ void ASurface::plotImage(SpriteResource *sprite, int frameNum, const Common::Poi
}
void ASurface::plotFrame(SpriteFrame *frame, const Common::Point &pt) {
- return;
+ frame->copyTo(this, pt);
+// g_system->copyRectToScreen((byte *)getPixels(), 320, 0, 0, 320, 200);
+// g_system->updateScreen();
+
/*
byte *destP = (byte *)getBasePtr(pt.x, _scrollY + pt.y);
@@ -204,4 +207,17 @@ void ASurface::plotFrame(SpriteFrame *frame, const Common::Point &pt) {
*/
}
+void ASurface::copyTo(ASurface *dest, const Common::Point &destPos) {
+ for (int yp = 0; yp < h; ++yp) {
+ byte *srcP = (byte *)getBasePtr(0, yp);
+ byte *destP = (byte *)dest->getBasePtr(destPos.x, destPos.y + yp);
+
+ for (int xp = 0; xp < this->w; ++xp, ++srcP, ++destP) {
+ if (*srcP != 0)
+ *destP = *srcP;
+ }
+ }
+}
+
+
} // End of namespace Access