diff options
| author | 2023-09-26 01:20:17 -0400 | |
|---|---|---|
| committer | 2023-09-26 18:56:19 -0400 | |
| commit | a29e26200f8cac773e008719201831edfb83eaee (patch) | |
| tree | 003a78cf31a4e13d388605b7e31e9c8e3ac8502a | |
| parent | Merge pull request #11602 from t895/case-fix (diff) | |
| download | yuzu-a29e26200f8cac773e008719201831edfb83eaee.tar.gz yuzu-a29e26200f8cac773e008719201831edfb83eaee.tar.xz yuzu-a29e26200f8cac773e008719201831edfb83eaee.zip | |
android: Remove ability to install xci files
| -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 71ef2833d..7ae349e8e 100644 --- a/src/android/app/src/main/jni/native.cpp +++ b/src/android/app/src/main/jni/native.cpp | |||
| @@ -139,10 +139,6 @@ public: | |||
| 139 | if (nsp->IsExtractedType()) { | 139 | if (nsp->IsExtractedType()) { |
| 140 | return InstallError; | 140 | return InstallError; |
| 141 | } | 141 | } |
| 142 | } else if (file_extension == "xci") { | ||
| 143 | jconst xci = | ||
| 144 | std::make_shared<FileSys::XCI>(m_vfs->OpenFile(filename, FileSys::Mode::Read)); | ||
| 145 | nsp = xci->GetSecurePartitionNSP(); | ||
| 146 | } else { | 142 | } else { |
| 147 | return ErrorFilenameExtension; | 143 | return ErrorFilenameExtension; |
| 148 | } | 144 | } |