summaryrefslogtreecommitdiffstats
path: root/src/android
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2023-06-02 05:07:18 +0200
committerbunnei <bunneidev@gmail.com>2023-06-03 09:06:07 +0200
commit098e2c4077f62890f83c0785e858080e9e18296c (patch)
tree1b76d9222948d49fbaa1252471774e81aae1419b /src/android
parentandroid: Fix presentation layout on foldable and tablet devices. (diff)
downloadyuzu-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')
-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 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) {