Browse Source
Merge pull request #12260 from t895/install-reload-fix
android: Don't reload filesystem on update install
pull/15/merge
liamwhite
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
3 deletions
-
src/android/app/src/main/jni/native.cpp
|
|
|
@ -123,9 +123,6 @@ int EmulationSession::InstallFileToNand(std::string filename, std::string file_e |
|
|
|
ErrorFilenameExtension = 4, |
|
|
|
}; |
|
|
|
|
|
|
|
m_system.SetContentProvider(std::make_unique<FileSys::ContentProviderUnion>()); |
|
|
|
m_system.GetFileSystemController().CreateFactories(*m_vfs); |
|
|
|
|
|
|
|
[[maybe_unused]] std::shared_ptr<FileSys::NSP> nsp; |
|
|
|
if (file_extension == "nsp") { |
|
|
|
nsp = std::make_shared<FileSys::NSP>(m_vfs->OpenFile(filename, FileSys::Mode::Read)); |
|
|
|
|