mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
Android: fix save and load state menus on non-TV devices
This commit is contained in:
+8
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user