mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-03-24 04:35:03 +00:00
aix: Fixed compile error.
This commit is contained in:
parent
4c190ce584
commit
380e0693b1
|
@ -510,11 +510,11 @@ PAUDIO_Init(SDL_AudioDriverImpl * impl)
|
||||||
close(fd);
|
close(fd);
|
||||||
|
|
||||||
/* Set the function pointers */
|
/* Set the function pointers */
|
||||||
impl->OpenDevice = DSP_OpenDevice;
|
impl->OpenDevice = PAUDIO_OpenDevice;
|
||||||
impl->PlayDevice = DSP_PlayDevice;
|
impl->PlayDevice = PAUDIO_PlayDevice;
|
||||||
impl->PlayDevice = DSP_WaitDevice;
|
impl->PlayDevice = PAUDIO_WaitDevice;
|
||||||
impl->GetDeviceBuf = DSP_GetDeviceBuf;
|
impl->GetDeviceBuf = PAUDIO_GetDeviceBuf;
|
||||||
impl->CloseDevice = DSP_CloseDevice;
|
impl->CloseDevice = PAUDIO_CloseDevice;
|
||||||
impl->OnlyHasDefaultOutputDevice = 1; /* !!! FIXME: add device enum! */
|
impl->OnlyHasDefaultOutputDevice = 1; /* !!! FIXME: add device enum! */
|
||||||
|
|
||||||
return 1; /* this audio target is available. */
|
return 1; /* this audio target is available. */
|
||||||
|
|
Loading…
Reference in a new issue