Skip to content
Snippets Groups Projects
Commit 3f95f7c7 authored by deuce's avatar deuce
Browse files

Make overlays the default output mode for OS X only.

parent c0557d5f
Branches
Tags
No related merge requests found
......@@ -285,7 +285,10 @@ CIOLIBEXPORT int CIOLIBCALL initciolib(int mode)
switch(mode) {
case CIOLIB_MODE_AUTO:
#if defined(WITH_SDL) || defined(WITH_SDL_AUDIO)
if(!try_sdl_init(mode))
#if (defined(__MACH__) && defined(__APPLE__))
if(!try_sdl_init(CIOLIB_MODE_SDL_YUV))
#endif
if(!try_sdl_init(CIOLIB_MODE_SDL))
#endif
#ifdef _WIN32
if(!try_conio_init(mode))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment