Bugfix to remove compile error that only affects GCC ARM compiler

ugfx_release_2.6
inmarket 2013-10-17 14:56:11 +10:00
parent bc79e65ffa
commit 4c29822a75
1 changed files with 2 additions and 2 deletions

View File

@ -171,7 +171,7 @@
/* External declarations. */ /* External declarations. */
/*===========================================================================*/ /*===========================================================================*/
typedef struct GDisplay { struct GDisplay {
GDISPControl g; // The public GDISP stuff - must be the first element GDISPControl g; // The public GDISP stuff - must be the first element
#if GDISP_TOTAL_CONTROLLERS > 1 #if GDISP_TOTAL_CONTROLLERS > 1
@ -224,7 +224,7 @@ typedef struct GDisplay {
color_t linebuf[GDISP_LINEBUF_SIZE]; color_t linebuf[GDISP_LINEBUF_SIZE];
#endif #endif
} GDisplay; };
#if GDISP_TOTAL_CONTROLLERS == 1 || defined(GDISP_DRIVER_VMT) || defined(__DOXYGEN__) #if GDISP_TOTAL_CONTROLLERS == 1 || defined(GDISP_DRIVER_VMT) || defined(__DOXYGEN__)
#if GDISP_TOTAL_CONTROLLERS > 1 #if GDISP_TOTAL_CONTROLLERS > 1