summaryrefslogtreecommitdiffstats
path: root/src/core/loader/deconstructed_rom_directory.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-08-26 01:04:48 +0200
committerZach Hilman <zachhilman@gmail.com>2018-09-04 22:23:15 +0200
commit97bf83bc56860be244077e9213468466f894c73d (patch)
treec5b59ded4f150ded530b6f218e2ca52589f2628b /src/core/loader/deconstructed_rom_directory.h
parentfile_sys: Add class to manage game patches (diff)
downloadyuzu-97bf83bc56860be244077e9213468466f894c73d.tar
yuzu-97bf83bc56860be244077e9213468466f894c73d.tar.gz
yuzu-97bf83bc56860be244077e9213468466f894c73d.tar.bz2
yuzu-97bf83bc56860be244077e9213468466f894c73d.tar.lz
yuzu-97bf83bc56860be244077e9213468466f894c73d.tar.xz
yuzu-97bf83bc56860be244077e9213468466f894c73d.tar.zst
yuzu-97bf83bc56860be244077e9213468466f894c73d.zip
Diffstat (limited to 'src/core/loader/deconstructed_rom_directory.h')
-rw-r--r--src/core/loader/deconstructed_rom_directory.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/loader/deconstructed_rom_directory.h b/src/core/loader/deconstructed_rom_directory.h
index b20804f75..cb50f8bff 100644
--- a/src/core/loader/deconstructed_rom_directory.h
+++ b/src/core/loader/deconstructed_rom_directory.h
@@ -20,10 +20,12 @@ namespace Loader {
*/
class AppLoader_DeconstructedRomDirectory final : public AppLoader {
public:
- explicit AppLoader_DeconstructedRomDirectory(FileSys::VirtualFile main_file);
+ explicit AppLoader_DeconstructedRomDirectory(FileSys::VirtualFile main_file,
+ bool override_update = false);
// Overload to accept exefs directory. Must contain 'main' and 'main.npdm'
- explicit AppLoader_DeconstructedRomDirectory(FileSys::VirtualDir directory);
+ explicit AppLoader_DeconstructedRomDirectory(FileSys::VirtualDir directory,
+ bool override_update = false);
/**
* Returns the type of the file
@@ -51,6 +53,7 @@ private:
std::vector<u8> icon_data;
std::string name;
u64 title_id{};
+ bool override_update;
};
} // namespace Loader