aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/myst.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mohawk/myst.cpp')
-rw-r--r--engines/mohawk/myst.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/engines/mohawk/myst.cpp b/engines/mohawk/myst.cpp
index 2150b9668a..f842269893 100644
--- a/engines/mohawk/myst.cpp
+++ b/engines/mohawk/myst.cpp
@@ -417,45 +417,45 @@ void MohawkEngine_Myst::changeToStack(uint16 stack, uint16 card, uint16 linkSrcS
switch (_curStack) {
case kChannelwoodStack:
_gameState->_globals.currentAge = 4;
- _scriptParser = new MystStacks::MystScriptParser_Channelwood(this);
+ _scriptParser = new MystStacks::Channelwood(this);
break;
case kCreditsStack:
- _scriptParser = new MystStacks::MystScriptParser_Credits(this);
+ _scriptParser = new MystStacks::Credits(this);
break;
case kDemoStack:
- _scriptParser = new MystStacks::MystScriptParser_Demo(this);
+ _scriptParser = new MystStacks::Demo(this);
break;
case kDniStack:
_gameState->_globals.currentAge = 6;
- _scriptParser = new MystStacks::MystScriptParser_Dni(this);
+ _scriptParser = new MystStacks::Dni(this);
break;
case kIntroStack:
- _scriptParser = new MystStacks::MystScriptParser_Intro(this);
+ _scriptParser = new MystStacks::Intro(this);
break;
case kMakingOfStack:
- _scriptParser = new MystStacks::MystScriptParser_MakingOf(this);
+ _scriptParser = new MystStacks::MakingOf(this);
break;
case kMechanicalStack:
_gameState->_globals.currentAge = 3;
- _scriptParser = new MystStacks::MystScriptParser_Mechanical(this);
+ _scriptParser = new MystStacks::Mechanical(this);
break;
case kMystStack:
_gameState->_globals.currentAge = 2;
- _scriptParser = new MystStacks::MystScriptParser_Myst(this);
+ _scriptParser = new MystStacks::Myst(this);
break;
case kDemoPreviewStack:
- _scriptParser = new MystStacks::MystScriptParser_Preview(this);
+ _scriptParser = new MystStacks::Preview(this);
break;
case kSeleniticStack:
_gameState->_globals.currentAge = 0;
- _scriptParser = new MystStacks::MystScriptParser_Selenitic(this);
+ _scriptParser = new MystStacks::Selenitic(this);
break;
case kDemoSlidesStack:
- _scriptParser = new MystStacks::MystScriptParser_Slides(this);
+ _scriptParser = new MystStacks::Slides(this);
break;
case kStoneshipStack:
_gameState->_globals.currentAge = 1;
- _scriptParser = new MystStacks::MystScriptParser_Stoneship(this);
+ _scriptParser = new MystStacks::Stoneship(this);
break;
default:
error("Unknown Myst stack");