Browse Source
Merge pull request #11616 from t895/save-error
android: Correctly reload settings file during reset
pull/15/merge
Charles Lombardo
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
src/android/app/src/main/java/org/yuzu/yuzu_emu/features/settings/ui/SettingsActivity.kt
|
|
|
@ -21,6 +21,7 @@ import androidx.navigation.navArgs |
|
|
|
import com.google.android.material.color.MaterialColors |
|
|
|
import kotlinx.coroutines.flow.collectLatest |
|
|
|
import kotlinx.coroutines.launch |
|
|
|
import org.yuzu.yuzu_emu.NativeLibrary |
|
|
|
import java.io.IOException |
|
|
|
import org.yuzu.yuzu_emu.R |
|
|
|
import org.yuzu.yuzu_emu.databinding.ActivitySettingsBinding |
|
|
|
@ -168,7 +169,7 @@ class SettingsActivity : AppCompatActivity() { |
|
|
|
if (!settingsFile.delete()) { |
|
|
|
throw IOException("Failed to delete $settingsFile") |
|
|
|
} |
|
|
|
Settings.settingsList.forEach { it.reset() } |
|
|
|
NativeLibrary.reloadSettings() |
|
|
|
|
|
|
|
Toast.makeText( |
|
|
|
applicationContext, |
|
|
|
|