[Scummvm-cvs-logs] scummvm master -> 9b703356e6c7aecfea52cfa82714fb0ef8241465

salty-horse ori at avtalion.name
Sat Jun 18 19:03:16 CEST 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
9b703356e6 DREAMWEB: Fix saveGameState signature to match Engine's virtual method


Commit: 9b703356e6c7aecfea52cfa82714fb0ef8241465
    https://github.com/scummvm/scummvm/commit/9b703356e6c7aecfea52cfa82714fb0ef8241465
Author: Ori Avtalion (ori at avtalion.name)
Date: 2011-06-18T09:59:36-07:00

Commit Message:
DREAMWEB: Fix saveGameState signature to match Engine's virtual method

Changed paths:
    engines/dreamweb/detection.cpp
    engines/dreamweb/dreamweb.h



diff --git a/engines/dreamweb/detection.cpp b/engines/dreamweb/detection.cpp
index c3e99fe..b8cefac 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 e4e0b04..a955bcf 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();






More information about the Scummvm-git-logs mailing list