diff options
author | Eugene Sandulenko | 2016-11-29 23:17:49 +0100 |
---|---|---|
committer | GitHub | 2016-11-29 23:17:49 +0100 |
commit | 5bed4bf794cdd52dca843aa548d4fcf16fd48d50 (patch) | |
tree | 9a60d05dedd8dd5bb3c5c1200e57c4076eb613e3 /common/error.cpp | |
parent | 47d60cca42d36aaf01f5e40d780b06899b526b03 (diff) | |
parent | e95c2cc3ff1dc696fb2c3d952931a3af314c2e5b (diff) | |
download | scummvm-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 'common/error.cpp')
-rw-r--r-- | common/error.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/error.cpp b/common/error.cpp index 53cd8cec55..bbbcb7c95e 100644 --- a/common/error.cpp +++ b/common/error.cpp @@ -65,7 +65,7 @@ static String errorToString(ErrorCode errorCode) { case kEnginePluginNotFound: return _s("Could not find suitable engine plugin"); case kEnginePluginNotSupportSaves: - return _s("Engine plugin does not support save states"); + return _s("Engine plugin does not support saved games"); case kUserCanceled: return _s("User canceled"); |