diff options
| author | Matthew Hoops | 2012-06-16 01:37:40 -0400 |
|---|---|---|
| committer | Matthew Hoops | 2012-06-16 01:43:32 -0400 |
| commit | 625f6cc71657e95e0361edefa333a38910c1aca5 (patch) | |
| tree | ae5ef8582ede4d62e56253467ea144db2341b353 /engines/pegasus | |
| parent | f02b696573fe4281e4890d71b74671804a5ebf41 (diff) | |
| parent | 5230a0d61795e2855625a43d60dc3bc2ed83fc3d (diff) | |
| download | scummvm-rg350-625f6cc71657e95e0361edefa333a38910c1aca5.tar.gz scummvm-rg350-625f6cc71657e95e0361edefa333a38910c1aca5.tar.bz2 scummvm-rg350-625f6cc71657e95e0361edefa333a38910c1aca5.zip | |
Merge remote branch 'upstream/master' into pegasus
Diffstat (limited to 'engines/pegasus')
| -rw-r--r-- | engines/pegasus/pegasus.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/pegasus/pegasus.cpp b/engines/pegasus/pegasus.cpp index 1665b474ee..43ffc4c460 100644 --- a/engines/pegasus/pegasus.cpp +++ b/engines/pegasus/pegasus.cpp @@ -328,8 +328,7 @@ void PegasusEngine::runIntro() { } Common::Error PegasusEngine::showLoadDialog() { - GUI::SaveLoadChooser slc(_("Load game:"), _("Load")); - slc.setSaveMode(false); + GUI::SaveLoadChooser slc(_("Load game:"), _("Load"), false); Common::String gameId = ConfMan.get("gameid"); @@ -355,8 +354,7 @@ Common::Error PegasusEngine::showLoadDialog() { } Common::Error PegasusEngine::showSaveDialog() { - GUI::SaveLoadChooser slc(_("Save game:"), _("Save")); - slc.setSaveMode(true); + GUI::SaveLoadChooser slc(_("Save game:"), _("Save"), true); Common::String gameId = ConfMan.get("gameid"); |
