From 5b3eb723e561160f892888013baae8c28ca70ce0 Mon Sep 17 00:00:00 2001 From: "Mateus B. Cassiano" Date: Sat, 19 Oct 2024 05:21:30 -0400 Subject: [PATCH] Android: remove "Saved settings to INI files" toast message --- .../dolphinemu/features/settings/model/Settings.kt | 12 ------------ Source/Android/app/src/main/res/values/strings.xml | 2 -- 2 files changed, 14 deletions(-) diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/Settings.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/Settings.kt index a971d7b709..cb1d9a662d 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/Settings.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/Settings.kt @@ -49,12 +49,6 @@ class Settings : Closeable { fun saveSettings(context: Context?) { if (!isGameSpecific) { - if (context != null) Toast.makeText( - context, - R.string.settings_saved, - Toast.LENGTH_SHORT - ).show() - MappingCommon.save() NativeConfig.save(NativeConfig.LAYER_BASE) @@ -63,12 +57,6 @@ class Settings : Closeable { NativeLibrary.UpdateGCAdapterScanThread() } else { // custom game settings - if (context != null) { - Toast.makeText( - context, context.getString(R.string.settings_saved_game_specific, gameId), - Toast.LENGTH_SHORT - ).show() - } NativeConfig.save(NativeConfig.LAYER_LOCAL_GAME) } } diff --git a/Source/Android/app/src/main/res/values/strings.xml b/Source/Android/app/src/main/res/values/strings.xml index 8d1f9db297..8580ed3ea4 100644 --- a/Source/Android/app/src/main/res/values/strings.xml +++ b/Source/Android/app/src/main/res/values/strings.xml @@ -66,8 +66,6 @@ Graphics Settings GameCube Input Wii Input - Saved settings to INI files - Saved settings for %1$s General