diff options
author | Jared Adams <jaxad0127@gmail.com> | 2011-05-09 03:55:11 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2011-05-17 09:59:05 -0600 |
commit | ae4aea451d6e2c44b273c963026c4fd697568f79 (patch) | |
tree | 8f909b2c23baf3abb21b1c3987872fb891daa42f /src/being.cpp | |
parent | dbfee8acae48ee1eec46d049656e83e952686ece (diff) | |
download | mana-ae4aea451d6e2c44b273c963026c4fd697568f79.tar.gz mana-ae4aea451d6e2c44b273c963026c4fd697568f79.tar.bz2 mana-ae4aea451d6e2c44b273c963026c4fd697568f79.tar.xz mana-ae4aea451d6e2c44b273c963026c4fd697568f79.zip |
Fix sprite buffering size issues
Reviewed-by: Yohann Ferreira
Diffstat (limited to 'src/being.cpp')
-rw-r--r-- | src/being.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/being.cpp b/src/being.cpp index 548895cc..40479236 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -943,16 +943,6 @@ void Being::drawSpeech(int offsetX, int offsetY) } } -int Being::getWidth() const -{ - return std::max(CompoundSprite::getWidth(), DEFAULT_BEING_WIDTH); -} - -int Being::getHeight() const -{ - return std::max(CompoundSprite::getHeight(), DEFAULT_BEING_HEIGHT); -} - void Being::updateCoords() { if (!mDispName) |