FIXED AUDIO

This commit is contained in:
alex 2020-11-12 20:33:34 -08:00
parent 83e8af1f68
commit d2bc47b91e
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ static bool audio_sdl_init(void) {
SDL_AudioSpec want, have;
SDL_zero(want);
want.freq = 32000;
want.format = AUDIO_S16;
want.format = AUDIO_S16SYS;
want.channels = 2;
want.samples = 512;
want.callback = NULL;