diff options
| -rw-r--r-- | engines/mads/nebular/nebular_scenes2.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/mads/nebular/nebular_scenes2.cpp b/engines/mads/nebular/nebular_scenes2.cpp index 94e30aa4f2..d00857f0a2 100644 --- a/engines/mads/nebular/nebular_scenes2.cpp +++ b/engines/mads/nebular/nebular_scenes2.cpp @@ -1745,7 +1745,8 @@ void Scene208::enter() {  }  void Scene208::step() { -	if (_boundingFl && (_rhotundaTime <= _scene->_activeAnimation->getCurrentFrame())) { +	if (_boundingFl && _scene->_activeAnimation && +			(_rhotundaTime <= _scene->_activeAnimation->getCurrentFrame())) {  		_rhotundaTime = _scene->_activeAnimation->getCurrentFrame();  		if (_rhotundaTime == 125)  | 
