Skip to content

Commit

Permalink
Update packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
sinshu committed Dec 27, 2022
1 parent fdbf1b5 commit 958ad7b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ManagedDoom/ManagedDoom.csproj
Expand Up @@ -18,7 +18,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="DrippyAL" Version="2.1.0" />
<PackageReference Include="DrippyAL" Version="2.1.1" />
<PackageReference Include="MeltySynth" Version="2.4.0" />
<PackageReference Include="Silk.NET.Input.Glfw" Version="2.16.0" />
<PackageReference Include="Silk.NET.Windowing.Glfw" Version="2.16.0" />
Expand Down
2 changes: 1 addition & 1 deletion ManagedDoom/src/Silk/SilkMusic.cs
Expand Up @@ -169,7 +169,7 @@ public MusStream(SilkMusic parent, Config config, AudioDevice device, string sfP
left = new float[blockLength];
right = new float[blockLength];

audioStream = new AudioStream(device, MusDecoder.SampleRate, 2, latency, blockLength);
audioStream = new AudioStream(device, MusDecoder.SampleRate, 2, true, latency, blockLength);
}

public void SetDecoder(IDecoder decoder)
Expand Down
10 changes: 6 additions & 4 deletions ManagedDoomTest/ManagedDoomTest.csproj
Expand Up @@ -4,13 +4,15 @@
<TargetFramework>net7.0</TargetFramework>

<IsPackable>false</IsPackable>

<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.1" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
<PackageReference Include="coverlet.collector" Version="3.1.2">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
<PackageReference Include="MSTest.TestAdapter" Version="3.0.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.0.1" />
<PackageReference Include="coverlet.collector" Version="3.2.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit 958ad7b

Please sign in to comment.