Permalink
Browse files

Core: Fix up flags.h

  • Loading branch information...
endrift committed Jun 3, 2018
1 parent ff2fe50 commit 80593c96115b7f958ca5716a884e00236662f1b9
Showing with 19 additions and 5 deletions.
  1. +19 −5 src/core/flags.h.in
View
@@ -15,7 +15,7 @@
#cmakedefine BUILD_GLES2
#endif
-// COLOR flags
+// Miscellaneous flags
#ifndef COLOR_16_BIT
#cmakedefine COLOR_16_BIT
@@ -25,6 +25,14 @@
#cmakedefine COLOR_5_6_5
#endif
+#ifndef DISABLE_THREADING
+#cmakedefine DISABLE_THREADING
+#endif
+
+#ifndef FIXED_ROM_BUFFER
+#cmakedefine FIXED_ROM_BUFFER
+#endif
+
// M_CORE flags
#ifndef M_CORE_GBA
@@ -35,9 +43,13 @@
#cmakedefine M_CORE_GB
#endif
-// USE flags
+// ENABLE flags
-#ifndef MINIMAL_CORE
+#ifndef ENABLE_SCRIPTING
+#cmakedefine ENABLE_SCRIPTING
+#endif
+
+// USE flags
#ifndef USE_DEBUGGERS
#cmakedefine USE_DEBUGGERS
@@ -47,6 +59,10 @@
#cmakedefine USE_EDITLINE
#endif
+#ifndef USE_ELF
+#cmakedefine USE_ELF
+#endif
+
#ifndef USE_EPOXY
#cmakedefine USE_EPOXY
#endif
@@ -96,5 +112,3 @@
#endif
#endif
-
-#endif

0 comments on commit 80593c9

Please sign in to comment.