sdl: only compile when using sdl

This commit is contained in:
Flyinghead 2019-10-18 22:22:34 +02:00
parent fe1f2dc93a
commit 664bfe6fa3
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@
along with Flycast. If not, see <https://www.gnu.org/licenses/>.
*/
#include "build.h"
#if 1//defined(USE_SDL) && HOST_OS != OS_DARWIN
#if defined(USE_SDL) && HOST_OS != OS_DARWIN
#include "gl_context.h"
#include "rend/gui.h"
#include "sdl/sdl.h"