summaryrefslogtreecommitdiff
path: root/src/core/loader
diff options
context:
space:
mode:
authorGravatar bunnei2018-07-21 22:05:30 -0700
committerGravatar GitHub2018-07-21 22:05:30 -0700
commitef163c1a15e25228cc7f6777e07905778d6f4f89 (patch)
tree9a9cc973c4334d5afbaa410bac363250748082c5 /src/core/loader
parentMerge pull request #761 from bunnei/improve-raster-cache (diff)
parentfile_util: Use a u64 to represent number of entries (diff)
downloadyuzu-ef163c1a15e25228cc7f6777e07905778d6f4f89.tar.gz
yuzu-ef163c1a15e25228cc7f6777e07905778d6f4f89.tar.xz
yuzu-ef163c1a15e25228cc7f6777e07905778d6f4f89.zip
Merge pull request #764 from lioncash/move
file_util: Minor changes to ScanDirectoryTree() and ForeachDirectoryEntry()
Diffstat (limited to 'src/core/loader')
-rw-r--r--src/core/loader/deconstructed_rom_directory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/deconstructed_rom_directory.cpp b/src/core/loader/deconstructed_rom_directory.cpp
index 394963a69..18bd62a08 100644
--- a/src/core/loader/deconstructed_rom_directory.cpp
+++ b/src/core/loader/deconstructed_rom_directory.cpp
@@ -20,7 +20,7 @@ namespace Loader {
20 20
21static std::string FindRomFS(const std::string& directory) { 21static std::string FindRomFS(const std::string& directory) {
22 std::string filepath_romfs; 22 std::string filepath_romfs;
23 const auto callback = [&filepath_romfs](unsigned*, const std::string& directory, 23 const auto callback = [&filepath_romfs](u64*, const std::string& directory,
24 const std::string& virtual_name) -> bool { 24 const std::string& virtual_name) -> bool {
25 const std::string physical_name = directory + virtual_name; 25 const std::string physical_name = directory + virtual_name;
26 if (FileUtil::IsDirectory(physical_name)) { 26 if (FileUtil::IsDirectory(physical_name)) {