diff options
| author | 2020-08-17 22:35:30 -0400 | |
|---|---|---|
| committer | 2020-08-17 22:35:30 -0400 | |
| commit | 56c6a5def85cfd3001c88d69374e3fb164272b9e (patch) | |
| tree | dfdceb64cc5c6c4f80f384206a080f77d7cc40ae /src/core/core.cpp | |
| parent | Merge pull request #4537 from lioncash/tz (diff) | |
| parent | common/fileutil: Convert namespace to Common::FS (diff) | |
| download | yuzu-56c6a5def85cfd3001c88d69374e3fb164272b9e.tar.gz yuzu-56c6a5def85cfd3001c88d69374e3fb164272b9e.tar.xz yuzu-56c6a5def85cfd3001c88d69374e3fb164272b9e.zip | |
Merge pull request #4535 from lioncash/fileutil
common/fileutil: Convert namespace to Common::FS
Diffstat (limited to 'src/core/core.cpp')
| -rw-r--r-- | src/core/core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 42277e2cd..1d8c0f1cd 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp | |||
| @@ -113,7 +113,7 @@ FileSys::VirtualFile GetGameFileFromPath(const FileSys::VirtualFilesystem& vfs, | |||
| 113 | return FileSys::ConcatenatedVfsFile::MakeConcatenatedFile(concat, dir->GetName()); | 113 | return FileSys::ConcatenatedVfsFile::MakeConcatenatedFile(concat, dir->GetName()); |
| 114 | } | 114 | } |
| 115 | 115 | ||
| 116 | if (FileUtil::IsDirectory(path)) | 116 | if (Common::FS::IsDirectory(path)) |
| 117 | return vfs->OpenFile(path + "/" + "main", FileSys::Mode::Read); | 117 | return vfs->OpenFile(path + "/" + "main", FileSys::Mode::Read); |
| 118 | 118 | ||
| 119 | return vfs->OpenFile(path, FileSys::Mode::Read); | 119 | return vfs->OpenFile(path, FileSys::Mode::Read); |