aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/nebular/game_nebular.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mads/nebular/game_nebular.cpp')
-rw-r--r--engines/mads/nebular/game_nebular.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/mads/nebular/game_nebular.cpp b/engines/mads/nebular/game_nebular.cpp
index 6e2b77d477..34fe0c7d19 100644
--- a/engines/mads/nebular/game_nebular.cpp
+++ b/engines/mads/nebular/game_nebular.cpp
@@ -155,7 +155,7 @@ void GameNebular::initialiseGlobals() {
void GameNebular::setSectionHandler() {
delete _sectionHandler;
- switch (_scene._sectionNum) {
+ switch (_sectionNumber) {
case 1:
_sectionHandler = new Section1Handler(_vm);
break;
@@ -177,6 +177,9 @@ void GameNebular::setSectionHandler() {
case 7:
_sectionHandler = new Section7Handler(_vm);
break;
+ case 8:
+ _sectionHandler = new Section8Handler(_vm);
+ break;
default:
break;
}