mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-18 15:15:37 +00:00
Fix missing / in custom collection path
This commit is contained in:
parent
3f9ffaa33d
commit
38c2b9a67b
|
@ -1035,12 +1035,12 @@ bool CollectionSystemManager::includeFileInAutoCollections(FileData* file)
|
||||||
|
|
||||||
std::string getCustomCollectionConfigPath(std::string collectionName)
|
std::string getCustomCollectionConfigPath(std::string collectionName)
|
||||||
{
|
{
|
||||||
return getCollectionsFolder() + "custom-" + collectionName + ".cfg";;
|
return getCollectionsFolder() + "/custom-" + collectionName + ".cfg";
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string getCollectionsFolder()
|
std::string getCollectionsFolder()
|
||||||
{
|
{
|
||||||
return Utils::FileSystem::getGenericPath(Utils::FileSystem::getHomePath() + "/.emulationstation/collections/");
|
return Utils::FileSystem::getGenericPath(Utils::FileSystem::getHomePath() + "/.emulationstation/collections");
|
||||||
}
|
}
|
||||||
|
|
||||||
bool systemSort(SystemData* sys1, SystemData* sys2)
|
bool systemSort(SystemData* sys1, SystemData* sys2)
|
||||||
|
|
Loading…
Reference in a new issue