Skip to content

Commit

Permalink
Merge pull request #138 from andy840119/update-package
Browse files Browse the repository at this point in the history
Update package
  • Loading branch information
andy840119 authored Jul 9, 2020
2 parents 4de7c0e + bed3ea8 commit a00c5ad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions osu.Game.Rulesets.Karaoke/KaraokeInputManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ private void load(KaraokeRulesetConfigManager config, IBindable<IReadOnlyList<Mo
}

protected override InputState CreateInitialState()
=> new KaraokeRulesetInputManagerInputState<KaraokeSaitenAction>(new MicrophoneState());
=> new KaraokeRulesetInputManagerInputState<KaraokeSaitenAction>(base.CreateInitialState());

public override void HandleInputStateChange(InputStateChangeEvent inputStateChange)
{
Expand Down Expand Up @@ -119,9 +119,10 @@ public class KaraokeRulesetInputManagerInputState<T> : RulesetInputManagerInputS
{
public MicrophoneState Microphone { get; }

public KaraokeRulesetInputManagerInputState(MicrophoneState microphone)
public KaraokeRulesetInputManagerInputState(InputState state)
: base(state)
{
Microphone = microphone;
Microphone = new MicrophoneState();
}
}

Expand Down
4 changes: 2 additions & 2 deletions osu.Game.Rulesets.Karaoke/osu.Game.Rulesets.Karaoke.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Octokit" Version="0.48.0" />
<PackageReference Include="osu.Framework.Microphone" Version="1.0.7" />
<PackageReference Include="ppy.osu.Game" Version="2020.629.0" />
<PackageReference Include="osu.Framework.Microphone" Version="1.0.10" />
<PackageReference Include="ppy.osu.Game" Version="2020.707.0" />
<PackageReference Include="LyricMaker" Version="1.1.1" />
<PackageReference Include="NicoKaraParser" Version="1.1.0" />
<PackageReference Include="osu.KaraokeFramework" Version="1.2.1" />
Expand Down

0 comments on commit a00c5ad

Please sign in to comment.