diff options
| author | Lioncash <mathew1800@gmail.com> | 2013-11-25 17:18:31 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2013-11-25 17:18:31 -0500 |
| commit | 7f85c3215bb0671f2607204196bcfed77ddc544b (patch) | |
| tree | 101406781a3dcaaf52284235b02aeed2f70bc375 /Source/Android/src | |
| parent | 76843b450bdfc11fc91128b2ce81442611b8d6d7 (diff) | |
[Android] Add Javadoc to InputOverlayDrawableJoystick.
Diffstat (limited to 'Source/Android/src')
| -rw-r--r-- | Source/Android/src/org/dolphinemu/dolphinemu/emulation/overlay/InputOverlayDrawableJoystick.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/Android/src/org/dolphinemu/dolphinemu/emulation/overlay/InputOverlayDrawableJoystick.java b/Source/Android/src/org/dolphinemu/dolphinemu/emulation/overlay/InputOverlayDrawableJoystick.java index 9b5dd6b860..582a8c3f80 100644 --- a/Source/Android/src/org/dolphinemu/dolphinemu/emulation/overlay/InputOverlayDrawableJoystick.java +++ b/Source/Android/src/org/dolphinemu/dolphinemu/emulation/overlay/InputOverlayDrawableJoystick.java @@ -28,8 +28,11 @@ public final class InputOverlayDrawableJoystick extends BitmapDrawable * Constructor * * @param res {@link Resources} instance. - * @param bitmapOuter {@link Bitmap} to use with this Drawable. - * @param joystick Identifier for which joystick this is. + * @param bitmapOuter {@link Bitmap} which represents the outer non-movable part of the joystick. + * @param bitmapInner {@link Bitmap} which represents the inner movable part of the joystick. + * @param rectOuter {@link Rect} which represents the outer joystick bounds. + * @param rectInner {@link Rect} which represents the inner joystick bounds. + * @param joystick Identifier for which joystick this is. */ public InputOverlayDrawableJoystick(Resources res, Bitmap bitmapOuter, Bitmap bitmapInner, @@ -139,6 +142,5 @@ public final class InputOverlayDrawableJoystick extends BitmapDrawable int height = this.ringInner.getBounds().height() / 2; this.ringInner.setBounds(X - width, Y - height, X + width, Y + height); - } } |
