summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-22 07:05:30 +0200
committerGitHub <noreply@github.com>2018-07-22 07:05:30 +0200
commitef163c1a15e25228cc7f6777e07905778d6f4f89 (patch)
tree9a9cc973c4334d5afbaa410bac363250748082c5 /src/core/file_sys
parentMerge pull request #761 from bunnei/improve-raster-cache (diff)
parentfile_util: Use a u64 to represent number of entries (diff)
downloadyuzu-ef163c1a15e25228cc7f6777e07905778d6f4f89.tar
yuzu-ef163c1a15e25228cc7f6777e07905778d6f4f89.tar.gz
yuzu-ef163c1a15e25228cc7f6777e07905778d6f4f89.tar.bz2
yuzu-ef163c1a15e25228cc7f6777e07905778d6f4f89.tar.lz
yuzu-ef163c1a15e25228cc7f6777e07905778d6f4f89.tar.xz
yuzu-ef163c1a15e25228cc7f6777e07905778d6f4f89.tar.zst
yuzu-ef163c1a15e25228cc7f6777e07905778d6f4f89.zip
Diffstat (limited to '')
-rw-r--r--src/core/file_sys/vfs_real.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/file_sys/vfs_real.cpp b/src/core/file_sys/vfs_real.cpp
index f27fb1f2a..27fd464ae 100644
--- a/src/core/file_sys/vfs_real.cpp
+++ b/src/core/file_sys/vfs_real.cpp
@@ -92,13 +92,13 @@ RealVfsDirectory::RealVfsDirectory(const std::string& path_, Mode perms_)
perms(perms_) {
if (!FileUtil::Exists(path) && (perms == Mode::Write || perms == Mode::Append))
FileUtil::CreateDir(path);
- unsigned size;
+
if (perms == Mode::Append)
return;
FileUtil::ForeachDirectoryEntry(
- &size, path,
- [this](unsigned* entries_out, const std::string& directory, const std::string& filename) {
+ nullptr, path,
+ [this](u64* entries_out, const std::string& directory, const std::string& filename) {
std::string full_path = directory + DIR_SEP + filename;
if (FileUtil::IsDirectory(full_path))
subdirectories.emplace_back(std::make_shared<RealVfsDirectory>(full_path, perms));