Skip to content

Commit

Permalink
Update package and fix compile error.
Browse files Browse the repository at this point in the history
  • Loading branch information
andy840119 committed Nov 9, 2020
1 parent 0150177 commit e7fd774
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions osu.Game.Rulesets.Karaoke/Statistics/BeatmapInfoGraph.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ protected override bool OnClick(ClickEvent e)
}

[BackgroundDependencyLoader(true)]
private void load([CanBeNull] IBindable<WorkingBeatmap> workingBeatmap, [CanBeNull] BeatmapDifficultyManager difficultyManager)
private void load([CanBeNull] IBindable<WorkingBeatmap> workingBeatmap, [CanBeNull] BeatmapDifficultyCache difficultyCache)
{
var beatmapDifficulty = difficultyManager.GetDifficulty(beatmap.BeatmapInfo);
var beatmapDifficulty = difficultyCache.GetBindableDifficulty(beatmap.BeatmapInfo).Value;
if (workingBeatmap != null)
{
LoadComponentAsync(new BeatmapInfoWedge(workingBeatmap.Value, beatmapDifficulty), Add);
Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Karaoke/osu.Game.Rulesets.Karaoke.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<PackageReference Include="Octokit" Version="0.48.0" />
<PackageReference Include="osu.Framework.KaraokeFont" Version="1.0.0" />
<PackageReference Include="osu.Framework.Microphone" Version="1.0.10" />
<PackageReference Include="ppy.osu.Game" Version="2020.1031.0" />
<PackageReference Include="ppy.osu.Game" Version="2020.1109.0" />
<PackageReference Include="LyricMaker" Version="1.1.1" />
<PackageReference Include="NicoKaraParser" Version="1.1.0" />
</ItemGroup>
Expand Down

0 comments on commit e7fd774

Please sign in to comment.