mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-12-25 06:20:06 +00:00
android: Prevent showing games on an invalid view
This commit is contained in:
parent
b0a434b99f
commit
ec048361af
@ -75,6 +75,9 @@ class PlatformGamesFragment : Fragment(), PlatformGamesView {
|
||||
}
|
||||
|
||||
override fun showGames(games: Cursor) {
|
||||
if (_binding == null)
|
||||
return
|
||||
|
||||
if (binding.gridGames.adapter != null) {
|
||||
(binding.gridGames.adapter as GameAdapter).swapCursor(games)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user