From 9e77738e7c8a01e343c060a12f0d9d44a96874ed Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 13 Mar 2016 22:06:58 +0300 Subject: Split CompoundSprite::draw into draw and drawSimple. --- src/being/being.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/being/being.cpp') diff --git a/src/being/being.cpp b/src/being/being.cpp index c3e63d41c..f31e45447 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -3050,7 +3050,7 @@ void Being::drawOtherSpriteAt(Graphics *restrict const graphics, const int x, const int y) const restrict2 { - CompoundSprite::draw(graphics, x, y); + CompoundSprite::drawSimple(graphics, x, y); } void Being::drawMonsterSpriteAt(Graphics *restrict const graphics, @@ -3063,7 +3063,7 @@ void Being::drawMonsterSpriteAt(Graphics *restrict const graphics, { if (!userPalette) { - CompoundSprite::draw(graphics, x, y); + CompoundSprite::drawSimple(graphics, x, y); return; } @@ -3081,7 +3081,7 @@ void Being::drawMonsterSpriteAt(Graphics *restrict const graphics, 2 * attackRange + mapTileSize, 2 * attackRange + mapTileSize)); } - CompoundSprite::draw(graphics, x, y); + CompoundSprite::drawSimple(graphics, x, y); if (mShowMobHP && mInfo && @@ -3118,7 +3118,7 @@ void Being::drawPortalSpriteAt(Graphics *restrict const graphics, { if (!userPalette) { - CompoundSprite::draw(graphics, x, y); + CompoundSprite::drawSimple(graphics, x, y); return; } @@ -3135,7 +3135,7 @@ void Being::drawPortalSpriteAt(Graphics *restrict const graphics, } } - CompoundSprite::draw(graphics, x, y); + CompoundSprite::drawSimple(graphics, x, y); } void Being::drawHpBar(Graphics *restrict const graphics, -- cgit v1.2.3-70-g09d2