summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Bakugo2019-07-01 07:31:32 +0100
committerGravatar Bakugo2019-07-01 07:31:32 +0100
commitc72ef5f405bd7fc3c7980590457a9368671d553d (patch)
treec6bff5394bc6cd9029b6908ff49046141d6a1a26 /src
parentfile_sys/submission_package: Don't warn about missing DeltaFragment NCAs (diff)
downloadyuzu-c72ef5f405bd7fc3c7980590457a9368671d553d.tar.gz
yuzu-c72ef5f405bd7fc3c7980590457a9368671d553d.tar.xz
yuzu-c72ef5f405bd7fc3c7980590457a9368671d553d.zip
file_sys/registered_cache: Improve missing metadata error
This can happen when installing NSPs too, not just XCIs.
Diffstat (limited to 'src')
-rw-r--r--src/core/file_sys/registered_cache.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/file_sys/registered_cache.cpp b/src/core/file_sys/registered_cache.cpp
index 46f9314d0..dfde04dd6 100644
--- a/src/core/file_sys/registered_cache.cpp
+++ b/src/core/file_sys/registered_cache.cpp
@@ -397,8 +397,8 @@ InstallResult RegisteredCache::InstallEntry(const NSP& nsp, bool overwrite_if_ex
397 }); 397 });
398 398
399 if (meta_iter == ncas.end()) { 399 if (meta_iter == ncas.end()) {
400 LOG_ERROR(Loader, "The XCI you are attempting to install does not have a metadata NCA and " 400 LOG_ERROR(Loader, "The file you are attempting to install does not have a metadata NCA and "
401 "is therefore malformed. Double check your encryption keys."); 401 "is therefore malformed. Check your encryption keys.");
402 return InstallResult::ErrorMetaFailed; 402 return InstallResult::ErrorMetaFailed;
403 } 403 }
404 404