This commit is contained in:
TuxSH
2016-08-21 22:09:47 +02:00
2 changed files with 23 additions and 15 deletions

View File

@@ -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;
}
}