Probably very low priority, here there's a comparison that's throwing a compiler warning
WaveFile.cs @ line 134:
if (waveFmt.AudioFormat == 0xFFFE)
{
waveFmt.AudioFormat = fmtSubFormatCode;
}
My guess is that this should be a WaveFormat.AudioFormat should be a ushort or perhaps the comparison should be some sort of byte comparison.
Probably very low priority, here there's a comparison that's throwing a compiler warning
WaveFile.cs @ line 134:
My guess is that this should be a
WaveFormat.AudioFormatshould be a ushort or perhaps the comparison should be some sort of byte comparison.