aboutsummaryrefslogtreecommitdiff
path: root/common/error.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/error.cpp')
-rw-r--r--common/error.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/common/error.cpp b/common/error.cpp
index 86557ee2dc..8fa58e2259 100644
--- a/common/error.cpp
+++ b/common/error.cpp
@@ -66,11 +66,15 @@ static String errorToString(ErrorCode errorCode) {
case kWritingFailed:
return _s("Writing data failed");
- case kUnknownError:
- case kPluginNotFound:
- case kPluginNotSupportSaves:
- case kNoSavesError:
+ case kEnginePluginNotFound:
+ return _s("Could not find suitable engine plugin");
+ case kEnginePluginNotSupportSaves:
+ return _s("Engine plugin does not support save states");
+
case kArgumentNotProcessed:
+ return _s("Command line argument not processed");
+
+ case kUnknownError:
default:
return _s("Unknown error");
}