diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-07 19:30:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-07 19:30:58 -0700 |
commit | f89b47fdf7c2060223b6648af3617a9b85fe6804 (patch) | |
tree | b660920a49f538f0ee00486c50a0d153d53c423d /src/yuzu/game_list.cpp | |
parent | 3417f46dd5a40a67204d5491d143bd6792e1e9fb (diff) | |
parent | 913896cbd99e414c325c9d47a987376ed6d9fffd (diff) |
Merge pull request #639 from bunnei/revert-vfs
Revert "Virtual Filesystem (#597)"
Diffstat (limited to 'src/yuzu/game_list.cpp')
-rw-r--r-- | src/yuzu/game_list.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp index be6cd6da4..5a708dc73 100644 --- a/src/yuzu/game_list.cpp +++ b/src/yuzu/game_list.cpp @@ -12,7 +12,6 @@ #include "common/common_paths.h" #include "common/logging/log.h" #include "common/string_util.h" -#include "core/file_sys/vfs_real.h" #include "core/loader/loader.h" #include "game_list.h" #include "game_list_p.h" @@ -405,8 +404,7 @@ void GameListWorker::AddFstEntriesToGameList(const std::string& dir_path, unsign bool is_dir = FileUtil::IsDirectory(physical_name); if (!is_dir && (HasSupportedFileExtension(physical_name) || IsExtractedNCAMain(physical_name))) { - std::unique_ptr<Loader::AppLoader> loader = - Loader::GetLoader(std::make_shared<FileSys::RealVfsFile>(physical_name)); + std::unique_ptr<Loader::AppLoader> loader = Loader::GetLoader(physical_name); if (!loader) return true; |