]> git.localhorst.tv Git - l2e.git/blobdiff - src/graphics/Sprite.cpp
fixed timer type in AnimationRunner::Clear()
[l2e.git] / src / graphics / Sprite.cpp
index 363be11230caa6ea462383f636ccc8270d7dac45..87ce8af1b366aaafd750fffd3e0e37e807c6928b 100644 (file)
@@ -11,7 +11,7 @@ using geometry::Point;
 
 namespace graphics {
 
-void Sprite::Draw(SDL_Surface *dest, Point<int> position, int col, int row) const {
+void Sprite::Draw(SDL_Surface *dest, const Point<int> &position, int col, int row) const {
        SDL_Rect srcRect, destRect;
        srcRect.x = xOffset + col * Width();
        srcRect.y = yOffset + row * Height();