aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter_v2.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2016-11-29 23:17:49 +0100
committerGitHub2016-11-29 23:17:49 +0100
commit5bed4bf794cdd52dca843aa548d4fcf16fd48d50 (patch)
tree9a60d05dedd8dd5bb3c5c1200e57c4076eb613e3 /engines/gob/inter_v2.cpp
parent47d60cca42d36aaf01f5e40d780b06899b526b03 (diff)
parente95c2cc3ff1dc696fb2c3d952931a3af314c2e5b (diff)
downloadscummvm-rg350-5bed4bf794cdd52dca843aa548d4fcf16fd48d50.tar.gz
scummvm-rg350-5bed4bf794cdd52dca843aa548d4fcf16fd48d50.tar.bz2
scummvm-rg350-5bed4bf794cdd52dca843aa548d4fcf16fd48d50.zip
Merge pull request #864 from BenCastricum/editing
ALL: Unify messages wording
Diffstat (limited to 'engines/gob/inter_v2.cpp')
-rw-r--r--engines/gob/inter_v2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/inter_v2.cpp b/engines/gob/inter_v2.cpp
index 4b58819c01..3928985dcd 100644
--- a/engines/gob/inter_v2.cpp
+++ b/engines/gob/inter_v2.cpp
@@ -1464,7 +1464,7 @@ void Inter_v2::o2_readData(OpFuncParams &params) {
if (!_vm->_saveLoad->load(file, dataVar, size, offset)) {
- GUI::MessageDialog dialog(_("Failed to load game state from file."));
+ GUI::MessageDialog dialog(_("Failed to load saved game from file."));
dialog.runModal();
} else
@@ -1534,7 +1534,7 @@ void Inter_v2::o2_writeData(OpFuncParams &params) {
if (!_vm->_saveLoad->save(file, dataVar, size, offset)) {
- GUI::MessageDialog dialog(_("Failed to save game state to file."));
+ GUI::MessageDialog dialog(_("Failed to save game to file."));
dialog.runModal();
} else