1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Theme support fixed

This commit is contained in:
Brian Fiete 2020-10-07 08:00:31 -07:00
parent 566f8c5d6f
commit 5a60d0e2d5
2 changed files with 8 additions and 4 deletions

View file

@ -114,10 +114,14 @@ int main()
else
fileName = "DarkUI_4.psd";
if ((!FileExists(fileName)) && (size == 0))
if (!FileExists(fileName))
{
isThemeDir = true;
fileName = "../../images/" + fileName;
String checkFileName = "../../images/" + fileName;
if (FileExists(checkFileName))
{
isThemeDir = true;
fileName = checkFileName;
}
}
}
else

Binary file not shown.