aboutsummaryrefslogtreecommitdiffstats
path: root/include/gfx.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gfx.h')
-rw-r--r--include/gfx.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/include/gfx.h b/include/gfx.h
index d261a6ce..0c922669 100644
--- a/include/gfx.h
+++ b/include/gfx.h
@@ -150,6 +150,13 @@
#ifndef GFX_USE_GMISC
#define GFX_USE_GMISC FALSE
#endif
+ /**
+ * @brief GFX File API
+ * @details Defaults to FALSE
+ */
+ #ifndef GFX_USE_GFILE
+ #define GFX_USE_GFILE FALSE
+ #endif
/** @} */
/**
@@ -157,6 +164,7 @@
*
*/
#include "gos/options.h"
+#include "gfile/options.h"
#include "gmisc/options.h"
#include "gqueue/options.h"
#include "gevent/options.h"
@@ -169,7 +177,7 @@
#include "gaudout/options.h"
/**
- * Inter-dependancy safety checks on the sub-systems.
+ * Interdependency safety checks on the sub-systems.
*
*/
#include "gfx_rules.h"
@@ -178,6 +186,7 @@
* Include the sub-system header files
*/
#include "gos/gos.h"
+#include "gfile/gfile.h"
#include "gmisc/gmisc.h"
#include "gqueue/gqueue.h"
#include "gevent/gevent.h"
@@ -208,7 +217,6 @@ extern "C" {
* @brief The one call to end it all
*
* @note This will deinitialise each sub-system that has been turned on.
- * @note Do not call this without a previous @p gfxInit();
*
* @api
*/