summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/jni/native.cpp
diff options
context:
space:
mode:
authort895 <clombardo169@gmail.com>2024-01-25 13:05:36 +0100
committert895 <clombardo169@gmail.com>2024-01-25 19:04:04 +0100
commit0fdd6e893460472766b92ce01acbe7755acb7bc0 (patch)
treee3f352a1bb31ccd6709b6be69cb3cf2e0f0a1f8f /src/android/app/src/main/jni/native.cpp
parentandroid: Add current driver vendor to FPS overlay (diff)
downloadyuzu-0fdd6e893460472766b92ce01acbe7755acb7bc0.tar
yuzu-0fdd6e893460472766b92ce01acbe7755acb7bc0.tar.gz
yuzu-0fdd6e893460472766b92ce01acbe7755acb7bc0.tar.bz2
yuzu-0fdd6e893460472766b92ce01acbe7755acb7bc0.tar.lz
yuzu-0fdd6e893460472766b92ce01acbe7755acb7bc0.tar.xz
yuzu-0fdd6e893460472766b92ce01acbe7755acb7bc0.tar.zst
yuzu-0fdd6e893460472766b92ce01acbe7755acb7bc0.zip
Diffstat (limited to '')
-rw-r--r--src/android/app/src/main/jni/native.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/android/app/src/main/jni/native.cpp b/src/android/app/src/main/jni/native.cpp
index c6c55b20c..c20c2d2b8 100644
--- a/src/android/app/src/main/jni/native.cpp
+++ b/src/android/app/src/main/jni/native.cpp
@@ -247,6 +247,7 @@ Core::SystemResultStatus EmulationSession::InitializeEmulation(const std::string
m_system.GetCpuManager().OnGpuReady();
m_system.RegisterExitCallback([&] { HaltEmulation(); });
+ OnEmulationStarted();
return Core::SystemResultStatus::Success;
}