mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2024-11-22 15:15:39 +01:00
android: Don't update views if binding is null in onConfigurationChanged
This commit is contained in:
parent
6a425e95cb
commit
ec388622ff
@ -304,6 +304,10 @@ class EmulationFragment : Fragment(), SurfaceHolder.Callback {
|
||||
|
||||
override fun onConfigurationChanged(newConfig: Configuration) {
|
||||
super.onConfigurationChanged(newConfig)
|
||||
if (_binding == null) {
|
||||
return
|
||||
}
|
||||
|
||||
updateScreenLayout()
|
||||
if (emulationActivity?.isInPictureInPictureMode == true) {
|
||||
if (binding.drawerLayout.isOpen) {
|
||||
|
Loading…
Reference in New Issue
Block a user