diff options
| -rw-r--r-- | engines/gob/init.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/gob/init.cpp b/engines/gob/init.cpp index f1af92f773..7f943c068f 100644 --- a/engines/gob/init.cpp +++ b/engines/gob/init.cpp @@ -104,6 +104,9 @@ void Init::initGame() {  		scnPlayer.play(_vm->_startTot); +		delete _palDesc; +		_vm->_video->initPrimary(-1); +		cleanup();  		return;  	} @@ -114,6 +117,9 @@ void Init::initGame() {  		batPlayer.play(_vm->_startTot); +		delete _palDesc; +		_vm->_video->initPrimary(-1); +		cleanup();  		return;  	}  | 
