Fixed linux case sensitivity issue with splash screen path.

This commit is contained in:
Don Honerbrink 2015-01-14 12:46:06 +00:00
parent e3d5a7b553
commit 39e7b71b1d

View File

@ -524,7 +524,7 @@ Page *RetroFE::LoadPage(std::string collectionName)
}
Page *RetroFE::LoadSplashPage()
{
PageBuilder pb("splash", "", Config, &FC);
PageBuilder pb("Splash", "", Config, &FC);
std::vector<Item *> *coll = new std::vector<Item *>();
Page * page = pb.BuildPage();
page->SetItems(coll);