diff options
| -rw-r--r-- | engines/dreamweb/detection.cpp | 2 | ||||
| -rw-r--r-- | engines/dreamweb/dreamweb.h | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/dreamweb/detection.cpp b/engines/dreamweb/detection.cpp index c3e99fed47..b8cefaca95 100644 --- a/engines/dreamweb/detection.cpp +++ b/engines/dreamweb/detection.cpp @@ -140,7 +140,7 @@ Common::Error DreamWebEngine::loadGameState(int slot) {  	return Common::kNoError;  } -Common::Error DreamWebEngine::saveGameState(int slot, const char *desc) { +Common::Error DreamWebEngine::saveGameState(int slot, const Common::String &desc) {  	return Common::kNoError;  } diff --git a/engines/dreamweb/dreamweb.h b/engines/dreamweb/dreamweb.h index e4e0b0453a..a955bcfe47 100644 --- a/engines/dreamweb/dreamweb.h +++ b/engines/dreamweb/dreamweb.h @@ -69,7 +69,7 @@ public:  	void waitForVSync();  	Common::Error loadGameState(int slot); -	Common::Error saveGameState(int slot, const char *desc); +	Common::Error saveGameState(int slot, const Common::String &desc);  	bool canLoadGameStateCurrently();  	bool canSaveGameStateCurrently();  | 
