mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 18:05:46 +00:00
fsmitm: Cleanup and modernize fsmitm port
This commit is contained in:
parent
600867c594
commit
0243903c12
22 changed files with 379 additions and 379 deletions
|
@ -413,11 +413,11 @@ std::string RealVfsDirectory::GetFullPath() const {
|
|||
return out;
|
||||
}
|
||||
|
||||
std::map<std::string, VfsEntryType> RealVfsDirectory::GetEntries() const {
|
||||
std::map<std::string, VfsEntryType, std::less<>> RealVfsDirectory::GetEntries() const {
|
||||
if (perms == Mode::Append)
|
||||
return {};
|
||||
|
||||
std::map<std::string, VfsEntryType> out;
|
||||
std::map<std::string, VfsEntryType, std::less<>> out;
|
||||
FileUtil::ForeachDirectoryEntry(
|
||||
nullptr, path,
|
||||
[&out](u64* entries_out, const std::string& directory, const std::string& filename) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue