summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Zach Hilman2018-08-30 16:59:30 -0400
committerGravatar Zach Hilman2018-09-04 14:29:19 -0400
commit8974771334aceaaba0912887dacfd3eb1eb0bee6 (patch)
treea2a8e941e81604c4146633ec46b5b0a70b5c7022 /src
parentnsp: Comply with style and performance guidelines (diff)
downloadyuzu-8974771334aceaaba0912887dacfd3eb1eb0bee6.tar.gz
yuzu-8974771334aceaaba0912887dacfd3eb1eb0bee6.tar.xz
yuzu-8974771334aceaaba0912887dacfd3eb1eb0bee6.zip
registration: Fix NSP installation errors
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index e7722cf95..d7c5d813f 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -814,7 +814,7 @@ void GMainWindow::OnMenuInstallToNAND() {
814 if (filename.endsWith("nsp", Qt::CaseInsensitive)) { 814 if (filename.endsWith("nsp", Qt::CaseInsensitive)) {
815 nsp = std::make_shared<FileSys::NSP>( 815 nsp = std::make_shared<FileSys::NSP>(
816 vfs->OpenFile(filename.toStdString(), FileSys::Mode::Read)); 816 vfs->OpenFile(filename.toStdString(), FileSys::Mode::Read));
817 if (!nsp->IsExtractedType()) 817 if (nsp->IsExtractedType())
818 failed(); 818 failed();
819 } else { 819 } else {
820 const auto xci = std::make_shared<FileSys::XCI>( 820 const auto xci = std::make_shared<FileSys::XCI>(