Android: Add null check for InputOverlay

Hopefully fixes https://bugs.dolphin-emu.org/issues/12316.
This commit is contained in:
JosJuice
2020-11-11 10:38:49 +01:00
parent 72997c17d0
commit 32ad2dcec3

View File

@ -94,14 +94,17 @@ public final class EmulationFragment extends Fragment implements SurfaceHolder.C
doneButton.setOnClickListener(v -> stopConfiguringControls()); doneButton.setOnClickListener(v -> stopConfiguringControls());
} }
contents.post(() -> if (mInputOverlay != null)
{ {
int overlayX = mInputOverlay.getLeft(); contents.post(() ->
int overlayY = mInputOverlay.getTop(); {
mInputOverlay.setSurfacePosition(new Rect( int overlayX = mInputOverlay.getLeft();
surfaceView.getLeft() - overlayX, surfaceView.getTop() - overlayY, int overlayY = mInputOverlay.getTop();
surfaceView.getRight() - overlayX, surfaceView.getBottom() - overlayY)); mInputOverlay.setSurfacePosition(new Rect(
}); surfaceView.getLeft() - overlayX, surfaceView.getTop() - overlayY,
surfaceView.getRight() - overlayX, surfaceView.getBottom() - overlayY));
});
}
// The new Surface created here will get passed to the native code via onSurfaceChanged. // The new Surface created here will get passed to the native code via onSurfaceChanged.