Merge pull request #11461 from peppy/realm-key-binding-store

Add initial realm database implementation with KeyBindingStore migration
This commit is contained in:
Dean Herbert
2021-06-19 02:49:41 +09:00
committed by GitHub
23 changed files with 778 additions and 204 deletions

View File

@ -177,7 +177,7 @@ namespace osu.Game.Rulesets.UI
{
base.ReloadMappings();
KeyBindings = KeyBindings.Where(b => KeyBindingStore.CheckValidForGameplay(b.KeyCombination)).ToList();
KeyBindings = KeyBindings.Where(b => RealmKeyBindingStore.CheckValidForGameplay(b.KeyCombination)).ToList();
}
}
}