diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/mads/nebular/nebular_scenes3.cpp | 2 | ||||
-rw-r--r-- | engines/mads/nebular/nebular_scenes3.h | 17 |
2 files changed, 12 insertions, 7 deletions
diff --git a/engines/mads/nebular/nebular_scenes3.cpp b/engines/mads/nebular/nebular_scenes3.cpp index 8287605270..7c485481b3 100644 --- a/engines/mads/nebular/nebular_scenes3.cpp +++ b/engines/mads/nebular/nebular_scenes3.cpp @@ -1762,8 +1762,6 @@ void Scene313::setup() { void Scene313::enter() { _scene->_userInterface.setup(kInputLimitedSentences); - gender_timer = 0; - gender_threshold = _vm->getRandomNumber(3, 9) * 600; if ((_scene->_priorSceneId == 366) || (_scene->_priorSceneId == 316)) { _game._player._playerPos = Common::Point(30, 80); diff --git a/engines/mads/nebular/nebular_scenes3.h b/engines/mads/nebular/nebular_scenes3.h index 57b05e8e16..f746b9f25e 100644 --- a/engines/mads/nebular/nebular_scenes3.h +++ b/engines/mads/nebular/nebular_scenes3.h @@ -219,11 +219,6 @@ public: }; class Scene313: public Scene3xx { -private: - uint32 gender_clock; - uint32 gender_timer; - uint32 gender_threshold; - public: Scene313(MADSEngine *vm) : Scene3xx(vm) {} @@ -234,6 +229,18 @@ public: virtual void actions(); virtual void postActions() {}; }; + +class Scene316: public Scene3xx { +public: + Scene316(MADSEngine *vm) : Scene3xx(vm) {} + + virtual void setup(); + virtual void enter(); + virtual void step(); + virtual void preActions(); + virtual void actions(); + virtual void postActions() {}; +}; } // End of namespace Nebular } // End of namespace MADS |