diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-02-05 12:33:10 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-02-05 15:48:51 +0300 |
commit | 126b1470842302537b0bc5e4527cf7fd540a9125 (patch) | |
tree | 8d98425338e7a7f01add71d762fba147fc097fc2 /src/being.cpp | |
parent | f6920653c7a958528df248ff61c372a0bd3d4f1d (diff) | |
download | mv-126b1470842302537b0bc5e4527cf7fd540a9125.tar.gz mv-126b1470842302537b0bc5e4527cf7fd540a9125.tar.bz2 mv-126b1470842302537b0bc5e4527cf7fd540a9125.tar.xz mv-126b1470842302537b0bc5e4527cf7fd540a9125.zip |
Add checks and const to animatedsprites and related classes.
Diffstat (limited to 'src/being.cpp')
-rw-r--r-- | src/being.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/being.cpp b/src/being.cpp index edc177f17..e2452f997 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -2087,7 +2087,8 @@ void Being::talkTo() Net::getNpcHandler()->talk(mId); } -bool Being::draw(Graphics *graphics, int offsetX, int offsetY) const +bool Being::draw(Graphics *const graphics, + const int offsetX, const int offsetY) const { bool res = true; if (!mErased) |