mirror of
https://github.com/stenzek/duckstation.git
synced 2024-11-26 23:50:31 +00:00
Android: Fix possible crash in TouchscreenControllerView
This commit is contained in:
parent
7775774761
commit
2ce9baa8ad
@ -44,9 +44,6 @@ public class TouchscreenControllerView extends FrameLayout {
|
||||
LayoutInflater inflater = LayoutInflater.from(getContext());
|
||||
switch (viewType)
|
||||
{
|
||||
case "none":
|
||||
break;
|
||||
|
||||
case "digital":
|
||||
mMainView = inflater.inflate(R.layout.layout_touchscreen_controller_digital, this, true);
|
||||
break;
|
||||
@ -59,11 +56,15 @@ public class TouchscreenControllerView extends FrameLayout {
|
||||
mMainView = inflater.inflate(R.layout.layout_touchscreen_controller_analog_sticks, this, true);
|
||||
break;
|
||||
|
||||
case "none":
|
||||
default:
|
||||
mMainView = null;
|
||||
break;
|
||||
}
|
||||
|
||||
if (mMainView == null)
|
||||
return;
|
||||
|
||||
mMainView.setOnTouchListener((view1, event) -> {
|
||||
return handleTouchEvent(event);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user