Skip to content

Commit 5806036

Browse files
committed
openslES: fix build
(cherry picked from commit f5246d0)
1 parent 9f369a1 commit 5806036

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/audio/openslES/SDL_openslES.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -420,9 +420,9 @@ static int openslES_CreatePCMPlayer(_THIS)
420420
SDL_AudioFormat test_format;
421421
for (test_format = SDL_FirstAudioFormat(this->spec.format); test_format; test_format = SDL_NextAudioFormat()) {
422422
switch (test_format) {
423-
case SDL_AUDIO_U8:
424-
case SDL_AUDIO_S16LE:
425-
case SDL_AUDIO_F32:
423+
case AUDIO_U8:
424+
case AUDIO_S16LSB:
425+
case AUDIO_F32LBS:
426426
break;
427427
default:
428428
continue;

0 commit comments

Comments
 (0)