mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
[Android] Add a button in the emulation view that allows a person to exit emulation and go back to the game list.
However, this does not work correctly yet. It will stop correctly. But the SurfaceView will not render the next game selected.
This commit is contained in:
@ -42,4 +42,10 @@
|
||||
android:title="@string/overlay_slot5"/>
|
||||
</menu>
|
||||
</item>
|
||||
|
||||
<item
|
||||
android:id="@+id/exitEmulation"
|
||||
android:showAsAction="always"
|
||||
android:title="@string/overlay_exit_emulation">
|
||||
</item>
|
||||
</menu>
|
||||
|
@ -33,6 +33,7 @@
|
||||
<!-- Emulation Window Overlay -->
|
||||
<string name="overlay_savestate">ステートセーブ</string>
|
||||
<string name="overlay_loadstate">ステートロード</string>
|
||||
<string name="overlay_exit_emulation">終了</string>
|
||||
<string name="overlay_slot1">スロット 1</string>
|
||||
<string name="overlay_slot2">スロット 2</string>
|
||||
<string name="overlay_slot3">スロット 3</string>
|
||||
|
@ -33,6 +33,8 @@
|
||||
<!-- Emulation Overlay -->
|
||||
<string name="overlay_savestate">Save State</string>
|
||||
<string name="overlay_loadstate">Load State</string>
|
||||
<string name="overlay_exit_emulation">Exit</string>
|
||||
<string name="overlay_exit_emulation_confirm">Are you sure you wish to exit this game?</string>
|
||||
<string name="overlay_slot1">Slot 1</string>
|
||||
<string name="overlay_slot2">Slot 2</string>
|
||||
<string name="overlay_slot3">Slot 3</string>
|
||||
|
Reference in New Issue
Block a user