diff options
author | bunnei <bunneidev@gmail.com> | 2023-06-02 05:07:18 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-03 09:06:07 +0200 |
commit | 098e2c4077f62890f83c0785e858080e9e18296c (patch) | |
tree | 1b76d9222948d49fbaa1252471774e81aae1419b /src/android/app | |
parent | android: Fix presentation layout on foldable and tablet devices. (diff) | |
download | yuzu-098e2c4077f62890f83c0785e858080e9e18296c.tar yuzu-098e2c4077f62890f83c0785e858080e9e18296c.tar.gz yuzu-098e2c4077f62890f83c0785e858080e9e18296c.tar.bz2 yuzu-098e2c4077f62890f83c0785e858080e9e18296c.tar.lz yuzu-098e2c4077f62890f83c0785e858080e9e18296c.tar.xz yuzu-098e2c4077f62890f83c0785e858080e9e18296c.tar.zst yuzu-098e2c4077f62890f83c0785e858080e9e18296c.zip |
Diffstat (limited to 'src/android/app')
-rw-r--r-- | src/android/app/src/main/jni/native.cpp | 1 |
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 d503ef61d..b87e04b3d 100644 --- a/src/android/app/src/main/jni/native.cpp +++ b/src/android/app/src/main/jni/native.cpp @@ -148,6 +148,7 @@ public: return; } m_window->OnSurfaceChanged(m_native_window); + m_system.Renderer().NotifySurfaceChanged(); } Core::SystemResultStatus InitializeEmulation(const std::string& filepath) { |