aboutsummaryrefslogtreecommitdiffstats
path: root/gfx.h
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@seriouslyembedded.com>2015-08-16 17:21:01 +0200
committerJoel Bodenmann <joel@seriouslyembedded.com>2015-08-16 17:21:01 +0200
commit28a2d8ca791b8bc74e52a26773ab3863bc37f145 (patch)
tree4101b9dbb5166df2926f5a87967970856aeb9599 /gfx.h
parent83b29284aa56691f4dc158defa57c58035eec814 (diff)
downloaduGFX-28a2d8ca791b8bc74e52a26773ab3863bc37f145.tar.gz
uGFX-28a2d8ca791b8bc74e52a26773ab3863bc37f145.tar.bz2
uGFX-28a2d8ca791b8bc74e52a26773ab3863bc37f145.zip
Renaming GFX_NO_OS_INIT to GFX_OS_NO_INIT
Diffstat (limited to 'gfx.h')
-rw-r--r--gfx.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gfx.h b/gfx.h
index 541743e5..2d073c0c 100644
--- a/gfx.h
+++ b/gfx.h
@@ -221,11 +221,11 @@ extern "C" {
* @note This will initialise each sub-system that has been turned on.
* For example, if GFX_USE_GDISP is defined then display will be initialised
* and cleared to black.
- * @note If you define GFX_NO_OS_INIT as TRUE in your gfxconf.h file then ugfx doesn't try to
+ * @note If you define GFX_OS_NO_INIT as TRUE in your gfxconf.h file then ugfx doesn't try to
* initialise the operating system for you when you call @p gfxInit().
* @note If you define GFX_OS_EXTRA_INIT_FUNCTION in your gfxconf.h file the macro is the
* name of a void function with no parameters that is called immediately after
- * operating system initialisation (whether or not GFX_NO_OS_INIT is set).
+ * operating system initialisation (whether or not GFX_OS_NO_INIT is set).
* @note If you define GFX_OS_EXTRA_DEINIT_FUNCTION in your gfxconf.h file the macro is the
* name of a void function with no parameters that is called immediately before
* operating system de-initialisation (as ugfx is exiting).