mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
Fix a call to a parent class method in InputOverlay.
Should have been a call to draw, not onDraw. Behavior-wise, it's still the same however.
This commit is contained in:
parent
b57949131d
commit
7922428dd7
@ -94,7 +94,7 @@ public final class InputOverlay extends SurfaceView implements OnTouchListener
|
||||
@Override
|
||||
public void draw(Canvas canvas)
|
||||
{
|
||||
super.onDraw(canvas);
|
||||
super.draw(canvas);
|
||||
|
||||
for (InputOverlayDrawableButton button : overlayButtons)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user