summaryrefslogtreecommitdiff
path: root/src/resources/animation/animation.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-04-26 20:11:07 +0300
committerAndrei Karas <akaras@inbox.ru>2016-04-26 20:11:07 +0300
commit07675230038a24dd251581591379c8fe5cc7bfd1 (patch)
tree1e4633730515af717ba93aef111f855de5cc9b38 /src/resources/animation/animation.cpp
parent17f34f00d37432dae207be3d55ec531a738eb065 (diff)
downloadplus-07675230038a24dd251581591379c8fe5cc7bfd1.tar.gz
plus-07675230038a24dd251581591379c8fe5cc7bfd1.tar.bz2
plus-07675230038a24dd251581591379c8fe5cc7bfd1.tar.xz
plus-07675230038a24dd251581591379c8fe5cc7bfd1.zip
Add memory count functions into MapLayer and SpecailLayer.
Also change all memory count functions into const methods.
Diffstat (limited to 'src/resources/animation/animation.cpp')
-rw-r--r--src/resources/animation/animation.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resources/animation/animation.cpp b/src/resources/animation/animation.cpp
index e52b55737..5af1f7dbb 100644
--- a/src/resources/animation/animation.cpp
+++ b/src/resources/animation/animation.cpp
@@ -87,12 +87,12 @@ void Animation::setLastFrameDelay(const int delay) noexcept
}
}
-int Animation::calcMemoryLocal()
+int Animation::calcMemoryLocal() const
{
int sz = sizeof(Animation);
- FOR_EACH (FramesIter, it, mFrames)
+ FOR_EACH (FramesCIter, it, mFrames)
{
- Frame &frame = *it;
+ const Frame &frame = *it;
sz += sizeof(Frame) +
frame.nextAction.capacity();
}