aboutsummaryrefslogtreecommitdiffstats
path: root/src/gfx.c
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2013-06-02 18:57:22 +1000
committerinmarket <andrewh@inmarket.com.au>2013-06-02 18:57:22 +1000
commit1c258a82738e145953fc9cf40c68dcce6db87d92 (patch)
treec151e882619714d696276ce29ef3388dce6e1866 /src/gfx.c
parentc2a4f9a5d616f5b18a965652d7492aacd377e5e2 (diff)
downloaduGFX-1c258a82738e145953fc9cf40c68dcce6db87d92.tar.gz
uGFX-1c258a82738e145953fc9cf40c68dcce6db87d92.tar.bz2
uGFX-1c258a82738e145953fc9cf40c68dcce6db87d92.zip
GOS updates
Diffstat (limited to 'src/gfx.c')
-rw-r--r--src/gfx.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/gfx.c b/src/gfx.c
index ffc38c84..2b307426 100644
--- a/src/gfx.c
+++ b/src/gfx.c
@@ -28,6 +28,8 @@
#include "gfx.h"
+void DEPRECATED("Use gfxInit() instead") gdispInit() { gfxInit(); }
+
/* These init functions are defined by each module but not published */
extern void _gosInit(void);
#if GFX_USE_GDISP && (GDISP_NEED_MULTITHREAD || GDISP_NEED_ASYNC)
@@ -105,10 +107,3 @@ void gfxInit(void) {
_gaudoutInit();
#endif
}
-
-void gdispInit(void) {
- #warning "gdispInit() is obsolete - please use gfxInit() instead"
-
- gfxInit();
-}
-