mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
Merge pull request #4219 from SeannyM/android-state
Android: fix save and load state menus on non-TV devices
This commit is contained in:
commit
90ab952588
1 changed files with 8 additions and 2 deletions
|
@ -426,11 +426,17 @@ public final class EmulationActivity extends AppCompatActivity
|
|||
|
||||
// TV Menu only
|
||||
case R.id.menu_emulation_save_root:
|
||||
showMenu(SaveStateFragment.FRAGMENT_ID);
|
||||
if (!mDeviceHasTouchScreen)
|
||||
{
|
||||
showMenu(SaveStateFragment.FRAGMENT_ID);
|
||||
}
|
||||
return;
|
||||
|
||||
case R.id.menu_emulation_load_root:
|
||||
showMenu(LoadStateFragment.FRAGMENT_ID);
|
||||
if (!mDeviceHasTouchScreen)
|
||||
{
|
||||
showMenu(LoadStateFragment.FRAGMENT_ID);
|
||||
}
|
||||
return;
|
||||
|
||||
// Save state slots
|
||||
|
|
Loading…
Add table
Reference in a new issue