diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-03 21:20:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-03 21:20:34 -0400 |
commit | 2afe8ac4a714de836ee58b45598a25c687a1bf12 (patch) | |
tree | 18af783e535a854dd2fea5e6538b442c2372f994 /src/yuzu/game_list.cpp | |
parent | 9cfe2414cbd02f9c5d1cc4c786e56cc1b1803299 (diff) | |
parent | a40537314405d62baa012836da9bba24ad4b02e5 (diff) |
Merge pull request #1229 from lioncash/forward-decl
vfs_real: Forward declare IOFile
Diffstat (limited to 'src/yuzu/game_list.cpp')
-rw-r--r-- | src/yuzu/game_list.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp index d15242d59..a3f4d9421 100644 --- a/src/yuzu/game_list.cpp +++ b/src/yuzu/game_list.cpp @@ -16,8 +16,9 @@ #include <boost/container/flat_map.hpp> #include <fmt/format.h> #include "common/common_paths.h" +#include "common/common_types.h" +#include "common/file_util.h" #include "common/logging/log.h" -#include "common/string_util.h" #include "core/file_sys/content_archive.h" #include "core/file_sys/control_metadata.h" #include "core/file_sys/registered_cache.h" |