aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2015-05-15 19:36:39 -0400
committerPaul Gilbert2015-05-15 19:36:39 -0400
commit07e9262ee7f38b31743d940fa8238dbbaeede864 (patch)
tree49f4c4eb0d5dc0c97c2b8a0c8180547c747743ec
parent8d2ec6f9fa45fc17d517db36fa688b12eb809681 (diff)
downloadscummvm-rg350-07e9262ee7f38b31743d940fa8238dbbaeede864.tar.gz
scummvm-rg350-07e9262ee7f38b31743d940fa8238dbbaeede864.tar.bz2
scummvm-rg350-07e9262ee7f38b31743d940fa8238dbbaeede864.zip
SHERLOCK: Change save extra option to use more standard originalsaveload
-rw-r--r--engines/sherlock/detection.cpp2
-rw-r--r--engines/sherlock/sherlock.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/sherlock/detection.cpp b/engines/sherlock/detection.cpp
index 34fd919770..2804ec1d31 100644
--- a/engines/sherlock/detection.cpp
+++ b/engines/sherlock/detection.cpp
@@ -67,7 +67,7 @@ static const ADExtraGuiOptionsMap optionsList[] = {
{
_s("Use original savegame dialog"),
_s("Files button in-game shows original savegame dialog rather than ScummVM menu"),
- "OriginalSaves",
+ "originalsaveload",
false
}
},
diff --git a/engines/sherlock/sherlock.cpp b/engines/sherlock/sherlock.cpp
index 41c41473d7..a84eedbd04 100644
--- a/engines/sherlock/sherlock.cpp
+++ b/engines/sherlock/sherlock.cpp
@@ -106,7 +106,7 @@ Common::Error SherlockEngine::run() {
initialize();
// Flag for whether to show original saves dialog rather than the ScummVM GMM
- _showOriginalSavesDialog = ConfMan.hasKey("OriginalSaves") && ConfMan.getBool("OriginalSaves");
+ _showOriginalSavesDialog = ConfMan.hasKey("originalsaveload") && ConfMan.getBool("originalsaveload");
// If requested, load a savegame instead of showing the intro
if (ConfMan.hasKey("save_slot")) {