mirror of https://github.com/encounter/SDL.git
Merge commit 'a5f3ea14487f1a36b1d421d02e86f25704f8bdc8' into main
This commit is contained in:
commit
082394c6b9
|
@ -295,9 +295,13 @@ NETBSDAUDIO_OpenDevice(_THIS, void *handle, const char *devname, int iscapture)
|
||||||
|
|
||||||
info.hiwat = 5;
|
info.hiwat = 5;
|
||||||
info.lowat = 3;
|
info.lowat = 3;
|
||||||
(void) ioctl(this->hidden->audio_fd, AUDIO_SETINFO, &info);
|
if (ioctl(this->hidden->audio_fd, AUDIO_SETINFO, &info) < 0) {
|
||||||
|
return SDL_SetError("AUDIO_SETINFO failed for %s: %s", devname, strerror(errno));
|
||||||
|
}
|
||||||
|
|
||||||
(void) ioctl(this->hidden->audio_fd, AUDIO_GETINFO, &info);
|
if (ioctl(this->hidden->audio_fd, AUDIO_GETINFO, &info) < 0) {
|
||||||
|
return SDL_SetError("AUDIO_GETINFO failed for %s: %s", devname, strerror(errno));
|
||||||
|
}
|
||||||
|
|
||||||
/* Final spec used for the device. */
|
/* Final spec used for the device. */
|
||||||
this->spec.format = format;
|
this->spec.format = format;
|
||||||
|
|
Loading…
Reference in New Issue