mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-18 07:05:39 +00:00
Merge pull request #387 from pjft/fix-paths
Fixing path generation on the Pi for getDirContents
This commit is contained in:
commit
99cc97680d
|
@ -88,7 +88,7 @@ namespace Utils
|
||||||
// ignore "." and ".."
|
// ignore "." and ".."
|
||||||
if((name != ".") && (name != ".."))
|
if((name != ".") && (name != ".."))
|
||||||
{
|
{
|
||||||
std::string fullName(path + "/" + name);
|
std::string fullName(getGenericPath(path + "/" + name));
|
||||||
contentList.push_back(fullName);
|
contentList.push_back(fullName);
|
||||||
|
|
||||||
if(_recursive && isDirectory(fullName))
|
if(_recursive && isDirectory(fullName))
|
||||||
|
|
Loading…
Reference in a new issue