diff options
author | Ben Castricum | 2016-11-29 21:10:59 +0100 |
---|---|---|
committer | Ben Castricum | 2016-11-29 21:10:59 +0100 |
commit | e95c2cc3ff1dc696fb2c3d952931a3af314c2e5b (patch) | |
tree | 8fac40c880b112ac59b7386015e5776b210a76e2 /engines/pegasus | |
parent | b041618a42ebf19494b1e0b8fdc659e09019ae42 (diff) | |
download | scummvm-rg350-e95c2cc3ff1dc696fb2c3d952931a3af314c2e5b.tar.gz scummvm-rg350-e95c2cc3ff1dc696fb2c3d952931a3af314c2e5b.tar.bz2 scummvm-rg350-e95c2cc3ff1dc696fb2c3d952931a3af314c2e5b.zip |
ALL: save file => saved game
Diffstat (limited to 'engines/pegasus')
-rw-r--r-- | engines/pegasus/pegasus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/pegasus/pegasus.cpp b/engines/pegasus/pegasus.cpp index 57c7fdbdf8..1f77caa751 100644 --- a/engines/pegasus/pegasus.cpp +++ b/engines/pegasus/pegasus.cpp @@ -711,7 +711,7 @@ static bool isValidSaveFileName(const Common::String &desc) { Common::Error PegasusEngine::saveGameState(int slot, const Common::String &desc) { if (!isValidSaveFileName(desc)) - return Common::Error(Common::kCreatingFileFailed, _("Invalid save file name")); + return Common::Error(Common::kCreatingFileFailed, _("Invalid file name for saving")); Common::String output = Common::String::format("pegasus-%s.sav", desc.c_str()); Common::OutSaveFile *saveFile = _saveFileMan->openForSaving(output, false); |