diff options
author | Lioncash <mathew1800@gmail.com> | 2018-09-03 21:58:19 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-09-03 22:52:24 -0400 |
commit | a813c10e1c71318925f2e65f2b0926099485bbc4 (patch) | |
tree | fc7894ea6e04e565ff4eb29c94b95f8d72a61521 /src/yuzu | |
parent | 1c5636e690ca5844b396f97adc0a094558edc56f (diff) |
file_sys: Replace includes with forward declarations where applicable
Cuts down on include dependencies, resulting in less files that need to
be rebuilt when certain things are changed.
Diffstat (limited to 'src/yuzu')
-rw-r--r-- | src/yuzu/game_list.cpp | 2 | ||||
-rw-r--r-- | src/yuzu/main.cpp | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp index a3f4d9421..71953cee3 100644 --- a/src/yuzu/game_list.cpp +++ b/src/yuzu/game_list.cpp @@ -13,7 +13,6 @@ #include <QKeyEvent> #include <QMenu> #include <QThreadPool> -#include <boost/container/flat_map.hpp> #include <fmt/format.h> #include "common/common_paths.h" #include "common/common_types.h" @@ -21,6 +20,7 @@ #include "common/logging/log.h" #include "core/file_sys/content_archive.h" #include "core/file_sys/control_metadata.h" +#include "core/file_sys/nca_metadata.h" #include "core/file_sys/registered_cache.h" #include "core/file_sys/romfs.h" #include "core/file_sys/vfs_real.h" diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index fd73b8541..c6f170cd7 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -30,6 +30,7 @@ #include "core/core.h" #include "core/crypto/key_manager.h" #include "core/file_sys/card_image.h" +#include "core/file_sys/content_archive.h" #include "core/file_sys/registered_cache.h" #include "core/file_sys/savedata_factory.h" #include "core/file_sys/vfs_real.h" |