diff --git a/osu.Game/Input/KeyBindingStore.cs b/osu.Game/Input/KeyBindingStore.cs index e2b6c1dc87..f9578d150b 100644 --- a/osu.Game/Input/KeyBindingStore.cs +++ b/osu.Game/Input/KeyBindingStore.cs @@ -30,7 +30,8 @@ namespace osu.Game.Input protected override void Prepare(bool reset = false) { - Connection.Database.ExecuteSqlCommand("DELETE FROM KeyBinding"); + if (reset) + Connection.Database.ExecuteSqlCommand("DELETE FROM KeyBinding"); } private void insertDefaults(IEnumerable defaults, int? rulesetId = null, int? variant = null)