diff options
| -rw-r--r-- | saga/saga.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/saga/saga.cpp b/saga/saga.cpp index b9caf9e3ec..de4a66ff1d 100644 --- a/saga/saga.cpp +++ b/saga/saga.cpp @@ -117,7 +117,6 @@ SagaEngine::SagaEngine(GameDetector *detector, OSystem *syst)  	_vm = this;  	_walkthroughDialog->setGameName(detector->_game.name); -	_walkthroughDialog->create();  }  SagaEngine::~SagaEngine() { @@ -217,6 +216,8 @@ void SagaEngine::go() {  		return;  	} +	_walkthroughDialog->create(); +  	// Initialize system specific sound  	_sound = new Sound(this, _mixer, _soundEnabled);  	if (!_soundEnabled) {  | 
