X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fsprite.cpp;h=bb31251a8becf225554b29f1983bab43813eaa2e;hb=157cef71aeb9ae25b7bb90f37dda11bc09329d11;hp=7d23c1dc2e0f96c0e58eeae5738e659eb0e625d9;hpb=08c752bd63e95dc7cec222f887b2b35d27c293b7;p=supertux.git diff --git a/src/sprite.cpp b/src/sprite.cpp index 7d23c1dc2..bb31251a8 100644 --- a/src/sprite.cpp +++ b/src/sprite.cpp @@ -79,7 +79,7 @@ Sprite::draw(float x, float y) unsigned int frame = get_current_frame(); if (frame < surfaces.size()) - surfaces[frame]->draw(x - x_hotspot - scroll_x, y - y_hotspot - scroll_y); + surfaces[frame]->draw(x - x_hotspot, y - y_hotspot); } void @@ -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 - scroll_x, y - y_hotspot - scroll_y , w, h); + surfaces[frame]->draw_part(sx, sy, x - x_hotspot, y - y_hotspot, w, h); } void