summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/card_image.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-06-12 22:52:15 +0200
committerLioncash <mathew1800@gmail.com>2019-06-12 22:52:19 +0200
commitc7daddb715d286c7236fc3ab9dc6e2ae623e8ebb (patch)
treed0542a5e637de47364b98fc803ac77935a9bcbd7 /src/core/file_sys/card_image.cpp
parentfile_sys/card_image: Deduplicate casts within AddNCAFromPartition() (diff)
downloadyuzu-c7daddb715d286c7236fc3ab9dc6e2ae623e8ebb.tar
yuzu-c7daddb715d286c7236fc3ab9dc6e2ae623e8ebb.tar.gz
yuzu-c7daddb715d286c7236fc3ab9dc6e2ae623e8ebb.tar.bz2
yuzu-c7daddb715d286c7236fc3ab9dc6e2ae623e8ebb.tar.lz
yuzu-c7daddb715d286c7236fc3ab9dc6e2ae623e8ebb.tar.xz
yuzu-c7daddb715d286c7236fc3ab9dc6e2ae623e8ebb.tar.zst
yuzu-c7daddb715d286c7236fc3ab9dc6e2ae623e8ebb.zip
Diffstat (limited to 'src/core/file_sys/card_image.cpp')
-rw-r--r--src/core/file_sys/card_image.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/card_image.cpp b/src/core/file_sys/card_image.cpp
index df9e0c434..626ed0042 100644
--- a/src/core/file_sys/card_image.cpp
+++ b/src/core/file_sys/card_image.cpp
@@ -187,8 +187,8 @@ Loader::ResultStatus XCI::AddNCAFromPartition(XCIPartition part) {
if (file->GetExtension() != "nca") {
continue;
}
+
auto nca = std::make_shared<NCA>(file, nullptr, 0, keys);
- // TODO(DarkLordZach): Add proper Rev1+ Support
if (nca->IsUpdate()) {
continue;
}