diff options
author | bunnei <bunneidev@gmail.com> | 2023-03-18 00:26:52 -0700 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-03 00:05:43 -0700 |
commit | f45a0b94d64819273919119b0a19bda1566713e6 (patch) | |
tree | 40217757b2f6d3b89c40ec3edb472be4a078ea4c /src | |
parent | b19754c73fbef3e20069ed6e0b69622e82b64da0 (diff) |
android: res: fragment_emulation: Ensure FPS counter is shown.
Diffstat (limited to 'src')
-rw-r--r-- | src/android/app/src/main/res/layout/fragment_emulation.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/android/app/src/main/res/layout/fragment_emulation.xml b/src/android/app/src/main/res/layout/fragment_emulation.xml index c2eb097f9..a3e5707ef 100644 --- a/src/android/app/src/main/res/layout/fragment_emulation.xml +++ b/src/android/app/src/main/res/layout/fragment_emulation.xml @@ -24,6 +24,13 @@ android:focusable="false" android:focusableInTouchMode="false" /> + <org.yuzu.yuzu_emu.overlay.InputOverlay + android:id="@+id/surface_input_overlay" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:focusable="true" + android:focusableInTouchMode="true" /> + <TextView android:id="@+id/show_fps_text" android:layout_width="wrap_content" @@ -37,11 +44,4 @@ android:textColor="@android:color/white" android:textSize="12sp" /> - <org.yuzu.yuzu_emu.overlay.InputOverlay - android:id="@+id/surface_input_overlay" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:focusable="true" - android:focusableInTouchMode="true" /> - </FrameLayout> |