summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd/yuzu.cpp
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-07-31 04:04:51 +0200
committerZach Hilman <zachhilman@gmail.com>2018-08-01 06:16:54 +0200
commit0497bb5528f62f9e3db887988f0f93b4a1653a42 (patch)
treec4f868272fb46e075e2e2c3f50504965dcf68796 /src/yuzu_cmd/yuzu.cpp
parentUse more descriptive error codes and messages (diff)
downloadyuzu-0497bb5528f62f9e3db887988f0f93b4a1653a42.tar
yuzu-0497bb5528f62f9e3db887988f0f93b4a1653a42.tar.gz
yuzu-0497bb5528f62f9e3db887988f0f93b4a1653a42.tar.bz2
yuzu-0497bb5528f62f9e3db887988f0f93b4a1653a42.tar.lz
yuzu-0497bb5528f62f9e3db887988f0f93b4a1653a42.tar.xz
yuzu-0497bb5528f62f9e3db887988f0f93b4a1653a42.tar.zst
yuzu-0497bb5528f62f9e3db887988f0f93b4a1653a42.zip
Diffstat (limited to '')
-rw-r--r--src/yuzu_cmd/yuzu.cpp4
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) {
return -1;
case Core::System::ResultStatus::ErrorLoader_ErrorMissingKeys:
LOG_CRITICAL(Frontend, "The game you are trying to load is encrypted and the keys required "
- "could not be found. Please refer to <LINK> for help");
+ "could not be found. Please refer to the yuzu wiki for help");
return -1;
case Core::System::ResultStatus::ErrorLoader_ErrorDecrypting:
LOG_CRITICAL(Frontend, "The game you are trying to load is encrypted and there was a "
"general error while decrypting. This could mean that the keys are "
"incorrect, game is invalid or game uses an unsupported method of "
- "crypto. Please refer to <LINK> to double-check your keys");
+ "crypto. Please double-check your keys");
return -1;
case Core::System::ResultStatus::ErrorLoader_ErrorInvalidFormat:
LOG_CRITICAL(Frontend, "Error while loading ROM: The ROM format is not supported.");