aboutsummaryrefslogtreecommitdiff
path: root/engines/pegasus/pegasus.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/pegasus/pegasus.cpp')
-rw-r--r--engines/pegasus/pegasus.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/pegasus/pegasus.cpp b/engines/pegasus/pegasus.cpp
index 4262ad4c12..1f77caa751 100644
--- a/engines/pegasus/pegasus.cpp
+++ b/engines/pegasus/pegasus.cpp
@@ -11,12 +11,12 @@
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
-
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
-
+ *
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
@@ -390,7 +390,7 @@ Common::Error PegasusEngine::showSaveDialog() {
}
void PegasusEngine::showSaveFailedDialog(const Common::Error &status) {
- Common::String failMessage = Common::String::format(_("Gamestate save failed (%s)! "
+ Common::String failMessage = Common::String::format(_("Failed to save game (%s)! "
"Please consult the README for basic information, and for "
"instructions on how to obtain further assistance."), status.getDesc().c_str());
GUI::MessageDialog dialog(failMessage);
@@ -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);