diff --git a/src/platform/python/_builder.h b/src/platform/python/_builder.h index 9a0d2b624..7c37e4a18 100644 --- a/src/platform/python/_builder.h +++ b/src/platform/python/_builder.h @@ -33,7 +33,7 @@ void free(void*); #include -#include "flags.h" +#include #include #include diff --git a/src/platform/python/_builder.py b/src/platform/python/_builder.py index 45518fa4f..43bcddc19 100644 --- a/src/platform/python/_builder.py +++ b/src/platform/python/_builder.py @@ -18,7 +18,7 @@ cppflags.extend(["-I" + incdir, "-I" + srcdir, "-I" + bindir]) ffi.set_source("mgba._pylib", """ #define static #define inline -#include "flags.h" +#include #define OPAQUE_THREADING #include #include diff --git a/src/platform/python/lib.h b/src/platform/python/lib.h index 9c6046a51..0dd8754ed 100644 --- a/src/platform/python/lib.h +++ b/src/platform/python/lib.h @@ -1,4 +1,4 @@ -#include "flags.h" +#include struct VFile; diff --git a/src/platform/python/sio.c b/src/platform/python/sio.c index ab8dd47bd..fbb407831 100644 --- a/src/platform/python/sio.c +++ b/src/platform/python/sio.c @@ -3,7 +3,7 @@ * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include "flags.h" +#include #define CREATE_SHIM(PLAT, NAME, RETURN) \ RETURN _py ## PLAT ## SIOPythonDriver ## NAME (void* driver); \