diff options
| author | 2019-06-12 16:52:15 -0400 | |
|---|---|---|
| committer | 2019-06-12 16:52:19 -0400 | |
| commit | c7daddb715d286c7236fc3ab9dc6e2ae623e8ebb (patch) | |
| tree | d0542a5e637de47364b98fc803ac77935a9bcbd7 /src | |
| parent | file_sys/card_image: Deduplicate casts within AddNCAFromPartition() (diff) | |
| download | yuzu-c7daddb715d286c7236fc3ab9dc6e2ae623e8ebb.tar.gz yuzu-c7daddb715d286c7236fc3ab9dc6e2ae623e8ebb.tar.xz yuzu-c7daddb715d286c7236fc3ab9dc6e2ae623e8ebb.zip | |
file_sys/card_image: Remove obsolete TODO
We already support Rev 1+.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/file_sys/card_image.cpp | 2 |
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) { | |||
| 187 | if (file->GetExtension() != "nca") { | 187 | if (file->GetExtension() != "nca") { |
| 188 | continue; | 188 | continue; |
| 189 | } | 189 | } |
| 190 | |||
| 190 | auto nca = std::make_shared<NCA>(file, nullptr, 0, keys); | 191 | auto nca = std::make_shared<NCA>(file, nullptr, 0, keys); |
| 191 | // TODO(DarkLordZach): Add proper Rev1+ Support | ||
| 192 | if (nca->IsUpdate()) { | 192 | if (nca->IsUpdate()) { |
| 193 | continue; | 193 | continue; |
| 194 | } | 194 | } |