Skip to content

Commit

Permalink
DREAMWEB: Fix saveGameState signature to match Engine's virtual method
Browse files Browse the repository at this point in the history
  • Loading branch information
salty-horse committed Jun 18, 2011
1 parent 72aa426 commit 9b70335
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion engines/dreamweb/detection.cpp
Expand Up @@ -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;
}

Expand Down
2 changes: 1 addition & 1 deletion engines/dreamweb/dreamweb.h
Expand Up @@ -69,7 +69,7 @@ class DreamWebEngine : public Engine {
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();
Expand Down

0 comments on commit 9b70335

Please sign in to comment.