From ecc6f7c3c6424ffd4a3431da896e07ddbdfda819 Mon Sep 17 00:00:00 2001 From: Zach Bacon Date: Thu, 3 Nov 2016 19:47:00 -0400 Subject: [PATCH] Default to OpenAL and OpenGL on linux --- src/wx/opts.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/wx/opts.cpp b/src/wx/opts.cpp index 3dad7a73..e4ab8362 100644 --- a/src/wx/opts.cpp +++ b/src/wx/opts.cpp @@ -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;