mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 07:39:26 +01:00
Android: remove "Saved settings to INI files" toast message
This commit is contained in:
parent
9b8df48d84
commit
5b3eb723e5
@ -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)
|
||||
}
|
||||
}
|
||||
|
@ -66,8 +66,6 @@
|
||||
<string name="graphics_settings">Graphics Settings</string>
|
||||
<string name="gcpad_settings">GameCube Input</string>
|
||||
<string name="wiimote_settings">Wii Input</string>
|
||||
<string name="settings_saved">Saved settings to INI files</string>
|
||||
<string name="settings_saved_game_specific">Saved settings for %1$s</string>
|
||||
|
||||
<!-- General Preference Fragment -->
|
||||
<string name="general_submenu">General</string>
|
||||
|
Loading…
x
Reference in New Issue
Block a user