summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/content_archive.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-08-24 00:53:13 +0200
committerZach Hilman <zachhilman@gmail.com>2018-08-24 00:53:13 +0200
commit4f18c17df77e791d30cc8c919108315610f315ef (patch)
treefc7b487b8ab4311f8a09c73197f2c8e7cfdc546f /src/core/file_sys/content_archive.h
parentkey_manager: Eliminate indexed for loop (diff)
downloadyuzu-4f18c17df77e791d30cc8c919108315610f315ef.tar
yuzu-4f18c17df77e791d30cc8c919108315610f315ef.tar.gz
yuzu-4f18c17df77e791d30cc8c919108315610f315ef.tar.bz2
yuzu-4f18c17df77e791d30cc8c919108315610f315ef.tar.lz
yuzu-4f18c17df77e791d30cc8c919108315610f315ef.tar.xz
yuzu-4f18c17df77e791d30cc8c919108315610f315ef.tar.zst
yuzu-4f18c17df77e791d30cc8c919108315610f315ef.zip
Diffstat (limited to '')
-rw-r--r--src/core/file_sys/content_archive.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/file_sys/content_archive.h b/src/core/file_sys/content_archive.h
index 4b74c54ec..b961cfde7 100644
--- a/src/core/file_sys/content_archive.h
+++ b/src/core/file_sys/content_archive.h
@@ -93,6 +93,8 @@ public:
VirtualFile GetBaseFile() const;
+ bool IsUpdate() const;
+
protected:
bool ReplaceFileWithSubdirectory(VirtualFile file, VirtualDir dir) override;
@@ -111,6 +113,7 @@ private:
NCAHeader header{};
bool has_rights_id{};
+ bool is_update{};
Loader::ResultStatus status{};