From ef1ecf859c4d7af3eee5d323c3b079cfc256aaa2 Mon Sep 17 00:00:00 2001 From: TuxSH Date: Sat, 20 Aug 2016 19:59:25 +0200 Subject: [PATCH] Update draw.c --- source/draw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/draw.c b/source/draw.c index b23bc09..e715554 100644 --- a/source/draw.c +++ b/source/draw.c @@ -43,7 +43,7 @@ static inline int strlen(const char *string) bool loadSplash(void) { //Don't delay boot nor init the screens if no splash image is on the SD - if(getFileSize("/luma/splash.bin") + getFileSize("/luma/splash.bin") == 0) + if(getFileSize("/luma/splash.bin") + getFileSize("/luma/splashbottom.bin") == 0) return false; initScreens(); @@ -98,4 +98,4 @@ int drawString(const char *string, int posX, int posY, u32 color) } return posY; -} \ No newline at end of file +}