diff --git a/libraries/libstratosphere/source/fs/fs_access_log.cpp b/libraries/libstratosphere/source/fs/fs_access_log.cpp index 3db8f330b..5e18e3cd2 100644 --- a/libraries/libstratosphere/source/fs/fs_access_log.cpp +++ b/libraries/libstratosphere/source/fs/fs_access_log.cpp @@ -156,6 +156,14 @@ namespace ams::fs::impl { } } + 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 {