From d16dda2180b070833ec4707429510403b1c502a8 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Mon, 16 Dec 2013 20:11:51 +0100 Subject: GDISP startup logo now optional --- src/gdisp/gdisp.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/gdisp/gdisp.c b/src/gdisp/gdisp.c index 8af496b3..c2819e38 100644 --- a/src/gdisp/gdisp.c +++ b/src/gdisp/gdisp.c @@ -28,7 +28,11 @@ #endif // Number of milliseconds for the startup logo - 0 means disabled. -#define GDISP_STARTUP_LOGO_TIMEOUT 1000 +#if GDISP_NEED_STARTUP_LOGO + #define GDISP_STARTUP_LOGO_TIMEOUT 1000 +#else + #define GDISP_STARTUP_LOGO_TIMEOUT 0 +#endif // The color to clear the display on startup #define GDISP_STARTUP_COLOR Black -- cgit v1.2.3