diff options
| author | JosJuice <josjuice@gmail.com> | 2022-09-17 16:10:45 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2023-03-07 17:39:34 +0100 |
| commit | 1788a797e76779c568de88605d567b1407cb992d (patch) | |
| tree | 757205ec880e189505cb6fe564b9719ca4b9166c /Source/Android/app/src/main/java | |
| parent | 6b5f82c12f0230c1595fd6c4cdff8239013b6886 (diff) | |
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!
Diffstat (limited to 'Source/Android/app/src/main/java')
| -rw-r--r-- | Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/activities/EmulationActivity.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/activities/EmulationActivity.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/activities/EmulationActivity.java index 9780f8de7b..9aebeb1ded 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/activities/EmulationActivity.java +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/activities/EmulationActivity.java @@ -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(); } |
