Android: Add "more settings" button to overlay control setting dialog
Some people might wonder where the ability to select an extension and the Sideways Wii Remote went. This button will take them to the general settings, which is where those settings now live. At some point in the future, we should probably move everything to the general settings. But this pull request is already big enough as it is!
This commit is contained in:
parent
6b5f82c12f
commit
1788a797e7
|
@ -1015,6 +1015,8 @@ public final class EmulationActivity extends AppCompatActivity implements ThemeP
|
|||
editor.apply();
|
||||
mEmulationFragment.refreshInputOverlay(mSettings);
|
||||
})
|
||||
.setNeutralButton(R.string.emulation_more_controller_settings,
|
||||
(dialogInterface, i) -> SettingsActivity.launch(this, MenuTag.SETTINGS))
|
||||
.show();
|
||||
}
|
||||
|
||||
|
|
|
@ -573,6 +573,7 @@ It can efficiently compress both junk data and encrypted Wii data.
|
|||
<string name="emulation_control_adjustments">Adjust Controls</string>
|
||||
<string name="emulation_control_joystick_rel_center">Relative Stick Center</string>
|
||||
<string name="emulation_choose_controller">Choose Controller</string>
|
||||
<string name="emulation_more_controller_settings">More Settings</string>
|
||||
<string name="emulation_menu_help">Press Back to access the menu.\nLong press Back to exit emulation.</string>
|
||||
<string name="emulation_touch_overlay_reset">Reset Overlay</string>
|
||||
<string name="emulation_ir_group">Touch IR Pointer</string>
|
||||
|
|
Loading…
Reference in New Issue