Android: Improve checking in MainPresenter.launchWiiSystemMenu

Not only SystemMenuNotInstalledDialogFragment requires directory
initialization to have completed, but also isSystemMenuInstalled.
This commit is contained in:
JosJuice
2022-09-25 22:15:15 +02:00
parent 199d2be939
commit 2c216c9a2b

View File

@ -317,20 +317,20 @@ public final class MainPresenter
private void launchWiiSystemMenu() private void launchWiiSystemMenu()
{ {
if (WiiUtils.isSystemMenuInstalled()) new AfterDirectoryInitializationRunner().runWithLifecycle(mActivity, () ->
{ {
EmulationActivity.launchSystemMenu(mActivity); if (WiiUtils.isSystemMenuInstalled())
} {
else EmulationActivity.launchSystemMenu(mActivity);
{ }
new AfterDirectoryInitializationRunner().runWithLifecycle(mActivity, () -> else
{ {
SystemMenuNotInstalledDialogFragment dialogFragment = SystemMenuNotInstalledDialogFragment dialogFragment =
new SystemMenuNotInstalledDialogFragment(); new SystemMenuNotInstalledDialogFragment();
dialogFragment dialogFragment
.show(mActivity.getSupportFragmentManager(), .show(mActivity.getSupportFragmentManager(),
"SystemMenuNotInstalledDialogFragment"); "SystemMenuNotInstalledDialogFragment");
}); }
} });
} }
} }