Browse Source
Merge pull request #11505 from t895/config-patch
android: Don't reinitialize settings on emulation start
pull/15/merge
Charles Lombardo
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
|
|
@ -262,9 +262,6 @@ public: |
|
|
Core::SystemResultStatus InitializeEmulation(const std::string& filepath) { |
|
|
Core::SystemResultStatus InitializeEmulation(const std::string& filepath) { |
|
|
std::scoped_lock lock(m_mutex); |
|
|
std::scoped_lock lock(m_mutex); |
|
|
|
|
|
|
|
|
// Loads the configuration.
|
|
|
|
|
|
Config{}; |
|
|
|
|
|
|
|
|
|
|
|
// Create the render window.
|
|
|
// Create the render window.
|
|
|
m_window = std::make_unique<EmuWindow_Android>(&m_input_subsystem, m_native_window, |
|
|
m_window = std::make_unique<EmuWindow_Android>(&m_input_subsystem, m_native_window, |
|
|
m_vulkan_library); |
|
|
m_vulkan_library); |
|
|
|