diff options
| author | bunnei <bunneidev@gmail.com> | 2018-01-20 15:48:37 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2018-01-20 15:54:17 -0500 |
| commit | 386df282a3ad340ddaf7ab054102858406b27198 (patch) | |
| tree | 3b7e44f33dac0384d412fed61de3c5ad40db137d /src/core/loader/deconstructed_rom_directory.cpp | |
| parent | e75aba3ed0eb0933c023f955d4c2e53e58ef6a5f (diff) | |
loader: Clean up ctors and includes.
Diffstat (limited to 'src/core/loader/deconstructed_rom_directory.cpp')
| -rw-r--r-- | src/core/loader/deconstructed_rom_directory.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/loader/deconstructed_rom_directory.cpp b/src/core/loader/deconstructed_rom_directory.cpp index daedeaab0..086ec11c8 100644 --- a/src/core/loader/deconstructed_rom_directory.cpp +++ b/src/core/loader/deconstructed_rom_directory.cpp @@ -4,6 +4,7 @@ #include "common/common_funcs.h" #include "common/common_paths.h" +#include "common/file_util.h" #include "common/logging/log.h" #include "common/string_util.h" #include "core/hle/kernel/process.h" @@ -14,6 +15,10 @@ namespace Loader { +AppLoader_DeconstructedRomDirectory::AppLoader_DeconstructedRomDirectory(FileUtil::IOFile&& file, + std::string filepath) + : AppLoader(std::move(file)), filepath(std::move(filepath)) {} + FileType AppLoader_DeconstructedRomDirectory::IdentifyType(FileUtil::IOFile& file, const std::string& filepath) { bool is_main_found{}; |
