mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-02-16 20:15:38 +00:00
Fix double //
This commit is contained in:
parent
b7679bae6c
commit
e6df25074b
|
@ -62,7 +62,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