diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/GamePropertiesFragment.kt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/GamePropertiesFragment.kt b/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/GamePropertiesFragment.kt index d14b2c634..3ea5e16ca 100644 --- a/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/GamePropertiesFragment.kt +++ b/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/GamePropertiesFragment.kt | |||
| @@ -243,7 +243,9 @@ class GamePropertiesFragment : Fragment() { | |||
| 243 | requireActivity(), | 243 | requireActivity(), |
| 244 | titleId = R.string.delete_save_data, | 244 | titleId = R.string.delete_save_data, |
| 245 | descriptionId = R.string.delete_save_data_warning_description, | 245 | descriptionId = R.string.delete_save_data_warning_description, |
| 246 | positiveAction = { | 246 | positiveButtonTitleId = android.R.string.cancel, |
| 247 | negativeButtonTitleId = android.R.string.ok, | ||
| 248 | negativeAction = { | ||
| 247 | File(args.game.saveDir).deleteRecursively() | 249 | File(args.game.saveDir).deleteRecursively() |
| 248 | Toast.makeText( | 250 | Toast.makeText( |
| 249 | YuzuApplication.appContext, | 251 | YuzuApplication.appContext, |