Skip to content

Commit 1354d8e

Browse files
Merge pull request #16 from flipswitchingmonkey/v0.3
various fixes
2 parents 28ee963 + a38acdb commit 1354d8e

File tree

5 files changed

+267
-40
lines changed

5 files changed

+267
-40
lines changed

FlexASIOGUI.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<TargetFramework>netcoreapp3.1</TargetFramework>
66
<UseWindowsForms>true</UseWindowsForms>
77
<Platforms>AnyCPU;x64</Platforms>
8+
<ApplicationIcon>installer\flexasiogui.ico</ApplicationIcon>
89
</PropertyGroup>
910

1011
<ItemGroup>

FlexGUIConfig.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace FlexASIOGUI
77
public class FlexGUIConfig
88
{
99
public string backend { get; set; } = "Windows WASAPI";
10-
public int bufferSizeSamples { get; set; } = 256;
10+
public int? bufferSizeSamples { get; set; } = null;
1111
public FlexGUIConfigDeviceSection input { get; set; }
1212
public FlexGUIConfigDeviceSection output { get; set; }
1313

@@ -21,9 +21,9 @@ public FlexGUIConfig()
2121
public class FlexGUIConfigDeviceSection
2222
{
2323
public string device { get; set; }
24-
public double suggestedLatencySeconds { get; set; }
25-
public bool wasapiExclusiveMode { get; set; } = false;
26-
public bool wasapiAutoConvert { get; set; } = true;
24+
public double? suggestedLatencySeconds { get; set; } = null;
25+
public bool? wasapiExclusiveMode { get; set; } = null;
26+
public bool? wasapiAutoConvert { get; set; } = null;
2727
public int? channels { get; set; }
2828
}
2929
}

Form1.Designer.cs

Lines changed: 113 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)