diff --git a/shell/android/res/layout/input_mod_fragment.xml b/shell/android/res/layout/input_mod_fragment.xml
index 82463ea6b..780a600da 100644
--- a/shell/android/res/layout/input_mod_fragment.xml
+++ b/shell/android/res/layout/input_mod_fragment.xml
@@ -371,6 +371,7 @@
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
+ android:layout_marginLeft="4dp"
android:text="Joystick" />
@@ -481,6 +484,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
+ android:layout_marginLeft="4dp"
android:ems="10"
android:text="DPad Left" />
@@ -518,6 +522,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
+ android:layout_marginLeft="4dp"
android:ems="10"
android:text="DPad Right" />
diff --git a/shell/android/src/com/reicast/emulator/InputModFragment.java b/shell/android/src/com/reicast/emulator/InputModFragment.java
index be830b3b0..bf0fe0ec8 100644
--- a/shell/android/src/com/reicast/emulator/InputModFragment.java
+++ b/shell/android/src/com/reicast/emulator/InputModFragment.java
@@ -209,7 +209,7 @@ public class InputModFragment extends Fragment {
ImageView r_button_icon = (ImageView) getView()
.findViewById(R.id.r_button_icon);
- r_button_icon.setImageDrawable(getButtonImage(160, 64));
+ r_button_icon.setImageDrawable(getButtonImage(162, 64));
final TextView r_button_text = (TextView) getView()
.findViewById(R.id.r_button_key);
getKeyCode("r_button", r_button_text);