summaryrefslogtreecommitdiff
path: root/Source/Android/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2013-09-04 07:32:28 -0400
committerLioncash <mathew1800@gmail.com>2013-09-04 07:32:28 -0400
commit48cda9d26ffa540874cde317f0e86e18fd6fb9f4 (patch)
treefdbd40de32d265d64abd835e5bbfad80b3f61fbf /Source/Android/src
parenta83d4e72261e67b654071c43b136c4954a4b9bfc (diff)
[Android] Display the name of the control that is being bound in the input settings. Makes the binding description more informative.
Diffstat (limited to 'Source/Android/src')
-rw-r--r--Source/Android/src/org/dolphinemu/dolphinemu/settings/InputConfigFragment.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Android/src/org/dolphinemu/dolphinemu/settings/InputConfigFragment.java b/Source/Android/src/org/dolphinemu/dolphinemu/settings/InputConfigFragment.java
index 985fb6d45e..1436f4bdd7 100644
--- a/Source/Android/src/org/dolphinemu/dolphinemu/settings/InputConfigFragment.java
+++ b/Source/Android/src/org/dolphinemu/dolphinemu/settings/InputConfigFragment.java
@@ -183,7 +183,7 @@ public final class InputConfigFragment extends PreferenceFragment
// Set the title and description message.
dialog.setTitle(R.string.input_binding);
- dialog.setMessage(getString(R.string.input_binding_descrip));
+ dialog.setMessage(String.format(getString(R.string.input_binding_descrip), pref.getTitle()));
// Don't allow the dialog to close when a user taps
// outside of it. They must press cancel or provide an input.