Default to OpenAL and OpenGL on linux
This commit is contained in:
parent
0e9e003a02
commit
ecc6f7c3c6
|
@ -282,6 +282,10 @@ opts_t::opts_t()
|
||||||
audio_api = AUD_OPENAL;
|
audio_api = AUD_OPENAL;
|
||||||
render_method = RND_OPENGL;
|
render_method = RND_OPENGL;
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef __WXGTK__
|
||||||
|
audio_api = AUD_OPENAL;
|
||||||
|
render_method = RND_OPENGL;
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
video_scale = 3;
|
video_scale = 3;
|
||||||
retain_aspect = true;
|
retain_aspect = true;
|
||||||
|
|
Loading…
Reference in New Issue