mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01: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
|
@Override
|
||||||
public void draw(Canvas canvas)
|
public void draw(Canvas canvas)
|
||||||
{
|
{
|
||||||
super.onDraw(canvas);
|
super.draw(canvas);
|
||||||
|
|
||||||
for (InputOverlayDrawableButton button : overlayButtons)
|
for (InputOverlayDrawableButton button : overlayButtons)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user