Dsound currently does not compile due to the typos in the code. This
patch makes it compile again.{PATCH}
Signed-off-by: Alex Ivanov <void@aleksoft.net>
Signed-off-by: malc <av1474@comtv.ru>
.bufsize_out = 16384,
.settings.freq = 44100,
.settings.nchannels = 2,
- .settings.fmt = AUD_FMT_S16
+ .settings.fmt = AUD_FMT_S16,
.latency_millis = 10
};
{
.name = "SET_PRIMARY",
.tag = AUD_OPT_BOOL,
- .valp = &conf.set_primary
+ .valp = &conf.set_primary,
.descr = "Set the parameters of primary buffer"
},
{
.max_voices_out = INT_MAX,
.max_voices_in = 1,
.voice_size_out = sizeof (DSoundVoiceOut),
- .oice_size_in = sizeof (DSoundVoiceIn)
+ .voice_size_in = sizeof (DSoundVoiceIn)
};