diff --git a/libraries/libstratosphere/source/fs/fs_access_log.cpp b/libraries/libstratosphere/source/fs/fs_access_log.cpp index 3db8f33..5e18e3c 100644 --- a/libraries/libstratosphere/source/fs/fs_access_log.cpp +++ b/libraries/libstratosphere/source/fs/fs_access_log.cpp @@ -156,6 +156,14 @@ } } + template<> const char *IdString::ToString(fs::DirectoryEntryType type) { + switch (type) { + case fs::DirectoryEntryType_Directory: return "Directory"; + case fs::DirectoryEntryType_File: return "File"; + default: return ToValueString(static_cast(type)); + } + } + namespace { class AccessLogPrinterCallbackManager {