diff options
author | Ben Castricum | 2016-11-29 11:43:57 +0100 |
---|---|---|
committer | Ben Castricum | 2016-11-29 20:15:20 +0100 |
commit | 6f38c1e55dd9d9ad764faf123c3ee01ae23d7ffc (patch) | |
tree | e522d825ae4af7a68435649f335e92d3be9881f4 /common | |
parent | 38eb27212d32351e885806f96555e58f081c6844 (diff) | |
download | scummvm-rg350-6f38c1e55dd9d9ad764faf123c3ee01ae23d7ffc.tar.gz scummvm-rg350-6f38c1e55dd9d9ad764faf123c3ee01ae23d7ffc.tar.bz2 scummvm-rg350-6f38c1e55dd9d9ad764faf123c3ee01ae23d7ffc.zip |
ALL: game state => saved game
Diffstat (limited to 'common')
-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"); |