aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/animation.h
diff options
context:
space:
mode:
authorPaul Gilbert2014-04-19 14:46:28 -0400
committerPaul Gilbert2014-04-19 14:46:28 -0400
commit559efad195b2ec7e77bd9192328d9e48b2a81e29 (patch)
treea592e6d7849515250b797c6fe952eac4aff6d762 /engines/mads/animation.h
parent3fa488db3a9174607d066c017a3f923e1919fd51 (diff)
downloadscummvm-rg350-559efad195b2ec7e77bd9192328d9e48b2a81e29.tar.gz
scummvm-rg350-559efad195b2ec7e77bd9192328d9e48b2a81e29.tar.bz2
scummvm-rg350-559efad195b2ec7e77bd9192328d9e48b2a81e29.zip
MADS: Moved Animation::free to be Scene::freeAnimation
Diffstat (limited to 'engines/mads/animation.h')
-rw-r--r--engines/mads/animation.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/engines/mads/animation.h b/engines/mads/animation.h
index 1fff2c48d1..8afb8cfcef 100644
--- a/engines/mads/animation.h
+++ b/engines/mads/animation.h
@@ -137,7 +137,6 @@ private:
MADSEngine *_vm;
Scene *_scene;
- Common::Array<AnimMessage> _messages;
Common::Array<AnimMiscEntry> _miscEntries;
Common::Array<SpriteAsset *> _spriteSets;
Font *_font;
@@ -179,6 +178,7 @@ public:
Common::Array<int> _spriteListIndexes;
Common::Array<AnimFrameEntry> _frameEntries;
Common::Array<AnimUIEntry> _uiEntries;
+ Common::Array<AnimMessage> _messages;
bool _resetFlag;
int _oldFrameEntry;
@@ -189,11 +189,6 @@ public:
~Animation();
/**
- * Releases scene resources used by the animation, and then deletes it
- */
- void free();
-
- /**
* Loads animation data
*/
void load(UserInterface &interfaceSurface, MSurface &depthSurface, const Common::String &resName,