diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-09-28 09:35:16 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-28 09:35:16 -0400 |
| commit | 4487c165c835803984871aa8d78605976a113c7e (patch) | |
| tree | a21b212a42f261e2a169a1678b3c14bbf52bff54 /src/android | |
| parent | f7821041257540c61813487537603ea190a2a435 (diff) | |
| parent | feebdc9779f7934f6e6dcafd8e371db720b58215 (diff) | |
Merge pull request #11604 from t895/only-install-nsp
Frontend: Remove ability to install xci files
Diffstat (limited to 'src/android')
| -rw-r--r-- | src/android/app/src/main/jni/native.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/android/app/src/main/jni/native.cpp b/src/android/app/src/main/jni/native.cpp index 9fa082dd5..9cf71680c 100644 --- a/src/android/app/src/main/jni/native.cpp +++ b/src/android/app/src/main/jni/native.cpp @@ -141,10 +141,6 @@ public: if (nsp->IsExtractedType()) { return InstallError; } - } else if (file_extension == "xci") { - jconst xci = - std::make_shared<FileSys::XCI>(m_vfs->OpenFile(filename, FileSys::Mode::Read)); - nsp = xci->GetSecurePartitionNSP(); } else { return ErrorFilenameExtension; } |
