diff options
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/filesystem/filesystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/filesystem/filesystem.cpp b/src/core/hle/service/filesystem/filesystem.cpp index 671e0b8d0..dbfe06cbc 100644 --- a/src/core/hle/service/filesystem/filesystem.cpp +++ b/src/core/hle/service/filesystem/filesystem.cpp | |||
| @@ -24,7 +24,7 @@ namespace Service::FileSystem { | |||
| 24 | constexpr u64 EMULATED_SD_REPORTED_SIZE = 32000000000; | 24 | constexpr u64 EMULATED_SD_REPORTED_SIZE = 32000000000; |
| 25 | 25 | ||
| 26 | static FileSys::VirtualDir GetDirectoryRelativeWrapped(FileSys::VirtualDir base, | 26 | static FileSys::VirtualDir GetDirectoryRelativeWrapped(FileSys::VirtualDir base, |
| 27 | const std::string& dir_name) { | 27 | std::string_view dir_name) { |
| 28 | if (dir_name.empty() || dir_name == "." || dir_name == "/" || dir_name == "\\") | 28 | if (dir_name.empty() || dir_name == "." || dir_name == "/" || dir_name == "\\") |
| 29 | return base; | 29 | return base; |
| 30 | 30 | ||