diff options
| author | 2018-07-30 22:04:51 -0400 | |
|---|---|---|
| committer | 2018-08-01 00:16:54 -0400 | |
| commit | 0497bb5528f62f9e3db887988f0f93b4a1653a42 (patch) | |
| tree | c4f868272fb46e075e2e2c3f50504965dcf68796 /src/yuzu_cmd/yuzu.cpp | |
| parent | Use more descriptive error codes and messages (diff) | |
| download | yuzu-0497bb5528f62f9e3db887988f0f93b4a1653a42.tar.gz yuzu-0497bb5528f62f9e3db887988f0f93b4a1653a42.tar.xz yuzu-0497bb5528f62f9e3db887988f0f93b4a1653a42.zip | |
Fix merge conflicts with opus and update docs
Diffstat (limited to 'src/yuzu_cmd/yuzu.cpp')
| -rw-r--r-- | src/yuzu_cmd/yuzu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp index 5970cdb4e..c3b0d9f1f 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp | |||
| @@ -175,13 +175,13 @@ int main(int argc, char** argv) { | |||
| 175 | return -1; | 175 | return -1; |
| 176 | case Core::System::ResultStatus::ErrorLoader_ErrorMissingKeys: | 176 | case Core::System::ResultStatus::ErrorLoader_ErrorMissingKeys: |
| 177 | LOG_CRITICAL(Frontend, "The game you are trying to load is encrypted and the keys required " | 177 | LOG_CRITICAL(Frontend, "The game you are trying to load is encrypted and the keys required " |
| 178 | "could not be found. Please refer to <LINK> for help"); | 178 | "could not be found. Please refer to the yuzu wiki for help"); |
| 179 | return -1; | 179 | return -1; |
| 180 | case Core::System::ResultStatus::ErrorLoader_ErrorDecrypting: | 180 | case Core::System::ResultStatus::ErrorLoader_ErrorDecrypting: |
| 181 | LOG_CRITICAL(Frontend, "The game you are trying to load is encrypted and there was a " | 181 | LOG_CRITICAL(Frontend, "The game you are trying to load is encrypted and there was a " |
| 182 | "general error while decrypting. This could mean that the keys are " | 182 | "general error while decrypting. This could mean that the keys are " |
| 183 | "incorrect, game is invalid or game uses an unsupported method of " | 183 | "incorrect, game is invalid or game uses an unsupported method of " |
| 184 | "crypto. Please refer to <LINK> to double-check your keys"); | 184 | "crypto. Please double-check your keys"); |
| 185 | return -1; | 185 | return -1; |
| 186 | case Core::System::ResultStatus::ErrorLoader_ErrorInvalidFormat: | 186 | case Core::System::ResultStatus::ErrorLoader_ErrorInvalidFormat: |
| 187 | LOG_CRITICAL(Frontend, "Error while loading ROM: The ROM format is not supported."); | 187 | LOG_CRITICAL(Frontend, "Error while loading ROM: The ROM format is not supported."); |