veandco / go-sdl2

SDL2 binding for Go
https://godoc.org/github.com/veandco/go-sdl2
BSD 3-Clause "New" or "Revised" License
2.17k stars 219 forks source link

Correct Mix_OpenAudioDevice condition #456

Closed waschik closed 4 years ago

waschik commented 4 years ago

Use mixer version 2.0.2 for Mix_OpenAudioDevice stub to be able to compile on Ubuntu 18.04. Previously sdl version was used for check.

In 2.0.2 it is included: http://hg.libsdl.org/SDL_mixer/file/c593f8bf25c3/SDL_mixer.h

In 2.0.1 it is not included: http://hg.libsdl.org/SDL_mixer/file/7e59d684b070/SDL_mixer.h

Mix_OpenAudioDevice is also mentioned in changelog: https://www.libsdl.org/projects/SDL_mixer/

veeableful commented 4 years ago

Thanks @waschik for the fix!