mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-05 09:39:58 +00:00
Remove a pointless c_str() call in FileUtil.cpp. The function takes a string in it's parameter
This commit is contained in:
parent
9856110782
commit
7ebc829b17
@ -496,7 +496,7 @@ u32 ScanDirectoryTree(const std::string &directory, FSTEntry& parentEntry)
|
|||||||
entry.physicalName = directory;
|
entry.physicalName = directory;
|
||||||
entry.physicalName += DIR_SEP + entry.virtualName;
|
entry.physicalName += DIR_SEP + entry.virtualName;
|
||||||
|
|
||||||
if (IsDirectory(entry.physicalName.c_str()))
|
if (IsDirectory(entry.physicalName))
|
||||||
{
|
{
|
||||||
entry.isDirectory = true;
|
entry.isDirectory = true;
|
||||||
// is a directory, lets go inside
|
// is a directory, lets go inside
|
||||||
|
Loading…
x
Reference in New Issue
Block a user