mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-04 05:51:19 +12:00
Change to camelCase to be consistent.
This commit is contained in:
parent
74c02d273f
commit
7a848be8a8
1 changed files with 4 additions and 4 deletions
|
@ -247,12 +247,12 @@ class fscDeviceHostFSC : public fscDeviceC {
|
|||
{
|
||||
found = false;
|
||||
std::error_code listErr;
|
||||
for (auto const& dir_entry : std::filesystem::directory_iterator{correctedPath, listErr})
|
||||
for (auto const& dirEntry : std::filesystem::directory_iterator{correctedPath, listErr})
|
||||
{
|
||||
std::filesystem::path entry_name = dir_entry.path().filename();
|
||||
if (lowercase_path(entry_name) == lowercase_path(it))
|
||||
std::filesystem::path entryName = dirEntry.path().filename();
|
||||
if (lowercase_path(entryName) == lowercase_path(it))
|
||||
{
|
||||
correctedPath /= entry_name;
|
||||
correctedPath /= entryName;
|
||||
found = true;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue