summaryrefslogtreecommitdiffstats
path: root/src/core/loader
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-10-18 17:51:47 +0200
committerGitHub <noreply@github.com>2018-10-18 17:51:47 +0200
commitd4ff4152ad72c6b6111e234152285c94125b646b (patch)
tree088dc40401f64c33d5376c1dcf50d71a19eb7ab7 /src/core/loader
parentMerge pull request #1505 from FernandoS27/tex-3d (diff)
parentXCI: Add function for checking the existence of the program NCA (diff)
downloadyuzu-d4ff4152ad72c6b6111e234152285c94125b646b.tar
yuzu-d4ff4152ad72c6b6111e234152285c94125b646b.tar.gz
yuzu-d4ff4152ad72c6b6111e234152285c94125b646b.tar.bz2
yuzu-d4ff4152ad72c6b6111e234152285c94125b646b.tar.lz
yuzu-d4ff4152ad72c6b6111e234152285c94125b646b.tar.xz
yuzu-d4ff4152ad72c6b6111e234152285c94125b646b.tar.zst
yuzu-d4ff4152ad72c6b6111e234152285c94125b646b.zip
Diffstat (limited to 'src/core/loader')
-rw-r--r--src/core/loader/xci.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/loader/xci.cpp b/src/core/loader/xci.cpp
index 7a619acb4..461607c95 100644
--- a/src/core/loader/xci.cpp
+++ b/src/core/loader/xci.cpp
@@ -59,8 +59,7 @@ ResultStatus AppLoader_XCI::Load(Kernel::Process& process) {
if (xci->GetProgramNCAStatus() != ResultStatus::Success)
return xci->GetProgramNCAStatus();
- const auto nca = xci->GetProgramNCA();
- if (nca == nullptr && !Core::Crypto::KeyManager::KeyFileExists(false))
+ if (!xci->HasProgramNCA() && !Core::Crypto::KeyManager::KeyFileExists(false))
return ResultStatus::ErrorMissingProductionKeyFile;
const auto result = nca_loader->Load(process);