Skip to content

Commit

Permalink
aix: Fixed compile error.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Jul 1, 2017
1 parent 4c190ce commit 380e069
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/audio/paudio/SDL_paudio.c
Expand Up @@ -510,11 +510,11 @@ PAUDIO_Init(SDL_AudioDriverImpl * impl)
close(fd);

/* Set the function pointers */
impl->OpenDevice = DSP_OpenDevice;
impl->PlayDevice = DSP_PlayDevice;
impl->PlayDevice = DSP_WaitDevice;
impl->GetDeviceBuf = DSP_GetDeviceBuf;
impl->CloseDevice = DSP_CloseDevice;
impl->OpenDevice = PAUDIO_OpenDevice;
impl->PlayDevice = PAUDIO_PlayDevice;
impl->PlayDevice = PAUDIO_WaitDevice;
impl->GetDeviceBuf = PAUDIO_GetDeviceBuf;
impl->CloseDevice = PAUDIO_CloseDevice;
impl->OnlyHasDefaultOutputDevice = 1; /* !!! FIXME: add device enum! */

return 1; /* this audio target is available. */
Expand Down

0 comments on commit 380e069

Please sign in to comment.