diff options
Diffstat (limited to 'engines/mohawk/myst.cpp')
| -rw-r--r-- | engines/mohawk/myst.cpp | 24 | 
1 files changed, 12 insertions, 12 deletions
diff --git a/engines/mohawk/myst.cpp b/engines/mohawk/myst.cpp index d8c9786fcf..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 MystScriptParser_Channelwood(this); +		_scriptParser = new MystStacks::Channelwood(this);  		break;  	case kCreditsStack: -		_scriptParser = new MystScriptParser_Credits(this); +		_scriptParser = new MystStacks::Credits(this);  		break;  	case kDemoStack: -		_scriptParser = new MystScriptParser_Demo(this); +		_scriptParser = new MystStacks::Demo(this);  		break;  	case kDniStack:  		_gameState->_globals.currentAge = 6; -		_scriptParser = new MystScriptParser_Dni(this); +		_scriptParser = new MystStacks::Dni(this);  		break;  	case kIntroStack: -		_scriptParser = new MystScriptParser_Intro(this); +		_scriptParser = new MystStacks::Intro(this);  		break;  	case kMakingOfStack: -		_scriptParser = new MystScriptParser_MakingOf(this); +		_scriptParser = new MystStacks::MakingOf(this);  		break;  	case kMechanicalStack:  		_gameState->_globals.currentAge = 3; -		_scriptParser = new MystScriptParser_Mechanical(this); +		_scriptParser = new MystStacks::Mechanical(this);  		break;  	case kMystStack:  		_gameState->_globals.currentAge = 2; -		_scriptParser = new MystScriptParser_Myst(this); +		_scriptParser = new MystStacks::Myst(this);  		break;  	case kDemoPreviewStack: -		_scriptParser = new MystScriptParser_Preview(this); +		_scriptParser = new MystStacks::Preview(this);  		break;  	case kSeleniticStack:  		_gameState->_globals.currentAge = 0; -		_scriptParser = new MystScriptParser_Selenitic(this); +		_scriptParser = new MystStacks::Selenitic(this);  		break;  	case kDemoSlidesStack: -		_scriptParser = new MystScriptParser_Slides(this); +		_scriptParser = new MystStacks::Slides(this);  		break;  	case kStoneshipStack:  		_gameState->_globals.currentAge = 1; -		_scriptParser = new MystScriptParser_Stoneship(this); +		_scriptParser = new MystStacks::Stoneship(this);  		break;  	default:  		error("Unknown Myst stack");  | 
