Change to camelCase to be consistent.

This commit is contained in:
goeiecool9999 2022-09-07 17:33:36 +02:00 committed by klaas
parent 74c02d273f
commit 7a848be8a8

View file

@ -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;
}