From 08c752bd63e95dc7cec222f887b2b35d27c293b7 Mon Sep 17 00:00:00 2001 From: Ricardo Cruz Date: Tue, 11 May 2004 23:12:00 +0000 Subject: [PATCH] Modified draw_part() in sprite class to make use of scroll. SVN-Revision: 1116 --- src/sprite.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sprite.cpp b/src/sprite.cpp index 72ef1da2a..7d23c1dc2 100644 --- a/src/sprite.cpp +++ b/src/sprite.cpp @@ -89,7 +89,7 @@ Sprite::draw_part(float sx, float sy, float x, float y, float w, float h) unsigned int frame = get_current_frame(); if (frame < surfaces.size()) - surfaces[frame]->draw_part(sx, sy, x - x_hotspot, y - y_hotspot, w, h); + surfaces[frame]->draw_part(sx, sy, x - x_hotspot - scroll_x, y - y_hotspot - scroll_y , w, h); } void -- 2.11.0