Fix cake errors

This commit is contained in:
Justus Franklin Tumacder
2021-04-24 22:12:07 +08:00
parent 8b01082cbb
commit bedabc1ddf
8 changed files with 29 additions and 29 deletions

View File

@ -31,13 +31,13 @@ namespace osu.Game.Rulesets.Mania.Tests
public class TestSceneNotes : OsuTestScene
{
[Cached]
protected readonly Bindable<bool> configColourCodedNotes = new Bindable<bool>();
protected readonly Bindable<bool> ConfigColourCodedNotes = new Bindable<bool>();
[BackgroundDependencyLoader]
private void load(RulesetConfigCache configCache)
{
var config = (ManiaRulesetConfigManager)configCache.GetConfigFor(Ruleset.Value.CreateInstance());
config.BindWith(ManiaRulesetSetting.ColourCodedNotes, configColourCodedNotes);
config.BindWith(ManiaRulesetSetting.ColourCodedNotes, ConfigColourCodedNotes);
}
[Test]