mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-21 09:21:08 +00:00
SCI: Rename the sci_originalsavedload option to originalsaveload
This changes its naming to be like the rest of the game options
This commit is contained in:
parent
2325b8ce24
commit
1938d95c4e
@ -379,7 +379,7 @@ static const ADExtraGuiOptionsMap optionsList[] = {
|
||||
{
|
||||
_s("Use original save/load screens"),
|
||||
_s("Use the original save/load screens, instead of the ScummVM ones"),
|
||||
"sci_originalsaveload",
|
||||
"originalsaveload",
|
||||
false
|
||||
}
|
||||
},
|
||||
|
@ -191,7 +191,7 @@ extern void showScummVMDialog(const Common::String &message);
|
||||
|
||||
Common::Error SciEngine::run() {
|
||||
// Assign default values to the config manager, in case settings are missing
|
||||
ConfMan.registerDefault("sci_originalsaveload", "false");
|
||||
ConfMan.registerDefault("originalsaveload", "false");
|
||||
ConfMan.registerDefault("native_fb01", "false");
|
||||
ConfMan.registerDefault("windows_cursors", "false"); // Windows cursors for KQ6 Windows
|
||||
ConfMan.registerDefault("silver_cursors", "false"); // Silver cursors for SQ4 CD
|
||||
@ -492,7 +492,7 @@ void SciEngine::patchGameSaveRestore() {
|
||||
break;
|
||||
}
|
||||
|
||||
if (ConfMan.getBool("sci_originalsaveload"))
|
||||
if (ConfMan.getBool("originalsaveload"))
|
||||
return;
|
||||
|
||||
uint16 kernelNamesSize = _kernel->getKernelNamesSize();
|
||||
|
Loading…
Reference in New Issue
Block a user