diff options
-rw-r--r-- | src/resources/action.cpp | 2 | ||||
-rw-r--r-- | src/resources/sprite/spritedef.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/action.cpp b/src/resources/action.cpp index a44cc1aee..ff7a48997 100644 --- a/src/resources/action.cpp +++ b/src/resources/action.cpp @@ -97,7 +97,7 @@ int Action::calcMemoryChilds(const int level) const FOR_EACH (AnimationCIter, it, mAnimations) { sz += sizeof(SpriteDirection::Type); - Animation *const animation = (*it).second; + const Animation *const animation = (*it).second; sz += animation->calcMemory(level + 1); } return sz; diff --git a/src/resources/sprite/spritedef.cpp b/src/resources/sprite/spritedef.cpp index d0985860c..0662ef7bf 100644 --- a/src/resources/sprite/spritedef.cpp +++ b/src/resources/sprite/spritedef.cpp @@ -624,7 +624,7 @@ int SpriteDef::calcMemoryChilds(const int level) const FOR_EACHP (ActionMap::const_iterator, it2, actionMap) { sz += static_cast<int>((*it2).first.capacity()); - Action *const action = (*it2).second; + const Action *const action = (*it2).second; sz += action->calcMemory(level + 1); } } |