diff options
author | t895 <clombardo169@gmail.com> | 2024-02-05 12:49:01 +0100 |
---|---|---|
committer | t895 <clombardo169@gmail.com> | 2024-02-08 20:13:46 +0100 |
commit | 2600ac65c8101c69988f2506739e6ddef05b23c7 (patch) | |
tree | 286b6e4beb914b46c548a56e1cb4424a095d4124 /src/android/app | |
parent | common: fs: Expand android macros (diff) | |
download | yuzu-2600ac65c8101c69988f2506739e6ddef05b23c7.tar yuzu-2600ac65c8101c69988f2506739e6ddef05b23c7.tar.gz yuzu-2600ac65c8101c69988f2506739e6ddef05b23c7.tar.bz2 yuzu-2600ac65c8101c69988f2506739e6ddef05b23c7.tar.lz yuzu-2600ac65c8101c69988f2506739e6ddef05b23c7.tar.xz yuzu-2600ac65c8101c69988f2506739e6ddef05b23c7.tar.zst yuzu-2600ac65c8101c69988f2506739e6ddef05b23c7.zip |
Diffstat (limited to 'src/android/app')
-rw-r--r-- | src/android/app/src/main/jni/emu_window/emu_window.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/android/app/src/main/jni/emu_window/emu_window.cpp b/src/android/app/src/main/jni/emu_window/emu_window.cpp index c4f631924..c927cddda 100644 --- a/src/android/app/src/main/jni/emu_window/emu_window.cpp +++ b/src/android/app/src/main/jni/emu_window/emu_window.cpp @@ -3,6 +3,7 @@ #include <android/native_window_jni.h> +#include "common/android/id_cache.h" #include "common/logging/log.h" #include "input_common/drivers/touch_screen.h" #include "input_common/drivers/virtual_amiibo.h" @@ -60,7 +61,8 @@ void EmuWindow_Android::OnRemoveNfcTag() { void EmuWindow_Android::OnFrameDisplayed() { if (!m_first_frame) { - EmulationSession::GetInstance().OnEmulationStarted(); + Common::Android::RunJNIOnFiber<void>( + [&](JNIEnv* env) { EmulationSession::GetInstance().OnEmulationStarted(); }); m_first_frame = true; } } |