diff options
author | Charles Lombardo <clombardo169@gmail.com> | 2023-03-22 19:37:53 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-03 09:05:46 +0200 |
commit | 89b9285627ec236a8ea19a6f8fa5f42bc93aa043 (patch) | |
tree | 58bedca0337a288310ce1345fa8b9c20b65752a4 /src/android/app | |
parent | android: Use modal navigation drawer as in game menu (diff) | |
download | yuzu-89b9285627ec236a8ea19a6f8fa5f42bc93aa043.tar yuzu-89b9285627ec236a8ea19a6f8fa5f42bc93aa043.tar.gz yuzu-89b9285627ec236a8ea19a6f8fa5f42bc93aa043.tar.bz2 yuzu-89b9285627ec236a8ea19a6f8fa5f42bc93aa043.tar.lz yuzu-89b9285627ec236a8ea19a6f8fa5f42bc93aa043.tar.xz yuzu-89b9285627ec236a8ea19a6f8fa5f42bc93aa043.tar.zst yuzu-89b9285627ec236a8ea19a6f8fa5f42bc93aa043.zip |
Diffstat (limited to 'src/android/app')
-rw-r--r-- | src/android/app/src/main/res/layout/fragment_emulation.xml | 4 |
1 files changed, 2 insertions, 2 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 be11f028f..b99c2e9c3 100644 --- a/src/android/app/src/main/res/layout/fragment_emulation.xml +++ b/src/android/app/src/main/res/layout/fragment_emulation.xml @@ -12,7 +12,7 @@ android:layout_width="match_parent" android:layout_height="match_parent"> - <!-- This is the onscreen input overlay --> + <!-- This is what everything is rendered to during emulation --> <SurfaceView android:id="@+id/surface_emulation" android:layout_width="match_parent" @@ -33,6 +33,7 @@ android:textColor="@android:color/white" android:textSize="12sp" /> + <!-- This is the onscreen input overlay --> <org.yuzu.yuzu_emu.overlay.InputOverlay android:id="@+id/surface_input_overlay" android:layout_width="match_parent" @@ -40,7 +41,6 @@ android:focusable="true" android:focusableInTouchMode="true" /> - <!-- This is what everything is rendered to during emulation --> <Button style="@style/Widget.Material3.Button.ElevatedButton" android:id="@+id/done_control_config" |