diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/SystemFilesFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/SystemFilesFragment.kt index 720faa550..649273f2c 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/SystemFilesFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/SystemFilesFragment.kt @@ -51,7 +51,6 @@ class SystemFilesFragment : Fragment() { private val gamesViewModel: GamesViewModel by activityViewModels() private val REGION_START = "RegionStart" - private val WARNING_SHOWN = "SystemFilesWarningShown" private val homeMenuMap: MutableMap = mutableMapOf() private var setupStateCached: BooleanArray? = null @@ -77,17 +76,6 @@ class SystemFilesFragment : Fragment() { homeViewModel.setNavigationVisibility(visible = false, animated = true) homeViewModel.setStatusBarShadeVisibility(visible = false) - val preferences = PreferenceManager.getDefaultSharedPreferences(CitraApplication.appContext) - if (!preferences.getBoolean(WARNING_SHOWN, false)) { - MessageDialogFragment.newInstance( - R.string.home_menu_warning, - R.string.home_menu_warning_description - ).show(childFragmentManager, MessageDialogFragment.TAG) - preferences.edit() - .putBoolean(WARNING_SHOWN, true) - .apply() - } - // TODO: Remove workaround for text filtering issue in material components when fixed // https://github.com/material-components/material-components-android/issues/1464 binding.dropdownSystemRegionStart.isSaveEnabled = false diff --git a/src/android/app/src/main/res/values/strings.xml b/src/android/app/src/main/res/values/strings.xml index 35799355e..eb108e1b6 100644 --- a/src/android/app/src/main/res/values/strings.xml +++ b/src/android/app/src/main/res/values/strings.xml @@ -160,8 +160,6 @@ Show HOME menu apps in Applications list Run System Setup when the HOME Menu is launched HOME Menu - System Files Warning - Due to how slow Android\'s storage access framework is for accessing Azahar\'s files, downloading multiple versions of system files can dramatically slow down loading for applications, save states, and the Applications list. Only download the files that you require to avoid any issues with loading speeds. Buttons