summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-10-03 07:47:32 +0200
committerLioncash <mathew1800@gmail.com>2018-10-03 07:47:34 +0200
commit37ee05f7c0f1fa8d94317e92795016e91f1bdfa6 (patch)
tree368407c3b64014409e0e742909b0de92cbae859a /src
parentsubmission_package: Move ExeFS and RomFS initialization to its own function (diff)
downloadyuzu-37ee05f7c0f1fa8d94317e92795016e91f1bdfa6.tar
yuzu-37ee05f7c0f1fa8d94317e92795016e91f1bdfa6.tar.gz
yuzu-37ee05f7c0f1fa8d94317e92795016e91f1bdfa6.tar.bz2
yuzu-37ee05f7c0f1fa8d94317e92795016e91f1bdfa6.tar.lz
yuzu-37ee05f7c0f1fa8d94317e92795016e91f1bdfa6.tar.xz
yuzu-37ee05f7c0f1fa8d94317e92795016e91f1bdfa6.tar.zst
yuzu-37ee05f7c0f1fa8d94317e92795016e91f1bdfa6.zip
Diffstat (limited to 'src')
-rw-r--r--src/core/file_sys/submission_package.cpp2
-rw-r--r--src/core/file_sys/submission_package.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/src/core/file_sys/submission_package.cpp b/src/core/file_sys/submission_package.cpp
index 5ebae1503..d39b79edd 100644
--- a/src/core/file_sys/submission_package.cpp
+++ b/src/core/file_sys/submission_package.cpp
@@ -61,8 +61,6 @@ NSP::NSP(VirtualFile file_)
return;
}
- extracted = false;
-
SetTicketKeys(files);
ReadNCAs(files);
}
diff --git a/src/core/file_sys/submission_package.h b/src/core/file_sys/submission_package.h
index 297821522..da3dc5e9f 100644
--- a/src/core/file_sys/submission_package.h
+++ b/src/core/file_sys/submission_package.h
@@ -64,7 +64,7 @@ private:
VirtualFile file;
- bool extracted;
+ bool extracted = false;
Loader::ResultStatus status;
std::map<u64, Loader::ResultStatus> program_status;