summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/android/app/src/main/res/layout/fragment_emulation.xml14
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 @@
24 android:focusable="false" 24 android:focusable="false"
25 android:focusableInTouchMode="false" /> 25 android:focusableInTouchMode="false" />
26 26
27 <org.yuzu.yuzu_emu.overlay.InputOverlay
28 android:id="@+id/surface_input_overlay"
29 android:layout_width="match_parent"
30 android:layout_height="match_parent"
31 android:focusable="true"
32 android:focusableInTouchMode="true" />
33
27 <TextView 34 <TextView
28 android:id="@+id/show_fps_text" 35 android:id="@+id/show_fps_text"
29 android:layout_width="wrap_content" 36 android:layout_width="wrap_content"
@@ -37,11 +44,4 @@
37 android:textColor="@android:color/white" 44 android:textColor="@android:color/white"
38 android:textSize="12sp" /> 45 android:textSize="12sp" />
39 46
40 <org.yuzu.yuzu_emu.overlay.InputOverlay
41 android:id="@+id/surface_input_overlay"
42 android:layout_width="match_parent"
43 android:layout_height="match_parent"
44 android:focusable="true"
45 android:focusableInTouchMode="true" />
46
47</FrameLayout> 47</FrameLayout>