Skip to content

Commit b988185

Browse files
committed
Fix publish settings
1 parent 7a41544 commit b988185

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

ClockSpout.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using Silk.NET.Core.Contexts;
22
using Silk.NET.Core.Loader;
33
using Silk.NET.Maths;
4-
using Silk.NET.Windowing;
54
using Spout.Interop;
65
using System;
76
using System.Collections.Generic;
@@ -172,7 +171,7 @@ public static unsafe async Task UpdateTexture() {
172171
}
173172

174173
public static void Cleanup() {
175-
spoutSender.Dispose();
174+
if (spoutSender != null) { spoutSender.Dispose(); }
176175
}
177176

178177
static unsafe void SetOpenglPixelFormat(HWND window) {

StreamStartingTimer.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
<PackageReference Include="CommandLineParser" Version="2.9.1" />
1515
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
1616
<PackageReference Include="Silk.NET.OpenGL" Version="2.22.0" />
17-
<PackageReference Include="Silk.NET.Windowing" Version="2.22.0" />
1817
<PackageReference Include="Spout.NETCore" Version="2.7.16" />
1918
<PackageReference Include="TerraFX.Interop.Windows" Version="10.0.26100.2" />
2019
<PackageReference Include="WatsonWebsocket" Version="4.1.5" />

0 commit comments

Comments
 (0)