diff options
Diffstat (limited to 'engines/mads')
-rw-r--r-- | engines/mads/nebular/nebular_scenes1.h | 1 | ||||
-rw-r--r-- | engines/mads/scene.cpp | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/nebular/nebular_scenes1.h b/engines/mads/nebular/nebular_scenes1.h index 25a8b52ded..ee9817957b 100644 --- a/engines/mads/nebular/nebular_scenes1.h +++ b/engines/mads/nebular/nebular_scenes1.h @@ -74,7 +74,6 @@ public: virtual void step(); virtual void preActions(); virtual void actions(); - virtual void postActions(); virtual void synchronize(Common::Serializer &s); }; diff --git a/engines/mads/scene.cpp b/engines/mads/scene.cpp index 24218479ce..9217be6d5d 100644 --- a/engines/mads/scene.cpp +++ b/engines/mads/scene.cpp @@ -685,6 +685,7 @@ void Scene::synchronize(Common::Serializer &s) { _action._activeAction.synchronize(s); _rails.synchronize(s); _userInterface.synchronize(s); + _sceneLogic->synchronize(s); } } // End of namespace MADS |