Default to OpenAL and OpenGL on linux

This commit is contained in:
Zach Bacon 2016-11-03 19:47:00 -04:00
parent 0e9e003a02
commit ecc6f7c3c6
1 changed files with 4 additions and 0 deletions

View File

@ -282,6 +282,10 @@ opts_t::opts_t()
audio_api = AUD_OPENAL;
render_method = RND_OPENGL;
#endif
#ifdef __WXGTK__
audio_api = AUD_OPENAL;
render_method = RND_OPENGL;
#endif
#endif
video_scale = 3;
retain_aspect = true;