SystemFilesFragment.kt: Removed accidentally committed code which breaks the radio buttons

Accidentally added in 58b2ebd5cd14eb49ecdd153224e9a07c9c51a423
This commit is contained in:
OpenSauce04 2025-03-14 20:57:14 +00:00
parent 58b2ebd5cd
commit c601a5e68a

View File

@ -209,7 +209,6 @@ class SystemFilesFragment : Fragment() {
textN3ds = getString(R.string.setup_system_files_o3ds_needed) textN3ds = getString(R.string.setup_system_files_o3ds_needed)
colorN3ds = R.color.citra_primary_yellow colorN3ds = R.color.citra_primary_yellow
buttonO3ds.isChecked = true
buttonN3ds.isEnabled = false buttonN3ds.isEnabled = false
} else { } else {
textO3ds = getString(R.string.setup_system_files_completed) textO3ds = getString(R.string.setup_system_files_completed)
@ -218,11 +217,9 @@ class SystemFilesFragment : Fragment() {
if (!setupStateCached!![1]) { if (!setupStateCached!![1]) {
textN3ds = getString(R.string.setup_system_files_possible) textN3ds = getString(R.string.setup_system_files_possible)
colorN3ds = R.color.citra_primary_blue colorN3ds = R.color.citra_primary_blue
buttonN3ds.isChecked = true
} else { } else {
textN3ds = getString(R.string.setup_system_files_completed) textN3ds = getString(R.string.setup_system_files_completed)
colorN3ds = R.color.citra_primary_green colorN3ds = R.color.citra_primary_green
buttonO3ds.isChecked = true
} }
} }