diff options
Diffstat (limited to 'engines/saga/detection.cpp')
| -rw-r--r-- | engines/saga/detection.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/engines/saga/detection.cpp b/engines/saga/detection.cpp index d5f3659dd4..c49661a052 100644 --- a/engines/saga/detection.cpp +++ b/engines/saga/detection.cpp @@ -245,7 +245,7 @@ int SagaEngine::getDisplayHeight() const {  	return di.logicalHeight;  } -int SagaEngine::loadGameState(int slot) { +Common::Error SagaEngine::loadGameState(int slot) {  	// Init the current chapter to 8 (character selection) for IHNM  	if (getGameType() == GType_IHNM)  		_scene->changeScene(-2, 0, kTransitionFade, 8); @@ -262,7 +262,7 @@ int SagaEngine::loadGameState(int slot) {  	load(calcSaveFileName((uint)slot));  	syncSoundSettings(); -	return 0;	// TODO: return success/failure +	return Common::kNoError;	// TODO: return success/failure  }  } // End of namespace Saga | 
