Don't throw an exception when settings file is not found

This commit is contained in:
amwatson 2024-01-28 18:19:31 -06:00
parent 792992fcfc
commit 56b199f451

View file

@ -51,7 +51,11 @@ class Settings {
private fun loadCitraSettings(view: SettingsActivityView?) {
for ((fileName) in configFileSectionsMap) {
try {
sections.putAll(SettingsFile.readFile(fileName, view))
} catch (e: Exception) {
}
}
}