summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/card_image.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-04-10 18:12:49 +0200
committerZach Hilman <zachhilman@gmail.com>2019-09-21 22:43:10 +0200
commit77f9ecd32b075fb8986103de5e446fa330210526 (patch)
treed1d7010fb7d0f2785f260700722e7e7498ad6ac4 /src/core/file_sys/card_image.h
parentcontent_archive: Add accessors for Rights ID and SDK Version (diff)
downloadyuzu-77f9ecd32b075fb8986103de5e446fa330210526.tar
yuzu-77f9ecd32b075fb8986103de5e446fa330210526.tar.gz
yuzu-77f9ecd32b075fb8986103de5e446fa330210526.tar.bz2
yuzu-77f9ecd32b075fb8986103de5e446fa330210526.tar.lz
yuzu-77f9ecd32b075fb8986103de5e446fa330210526.tar.xz
yuzu-77f9ecd32b075fb8986103de5e446fa330210526.tar.zst
yuzu-77f9ecd32b075fb8986103de5e446fa330210526.zip
Diffstat (limited to '')
-rw-r--r--src/core/file_sys/card_image.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/file_sys/card_image.h b/src/core/file_sys/card_image.h
index a350496f7..5a83acc1c 100644
--- a/src/core/file_sys/card_image.h
+++ b/src/core/file_sys/card_image.h
@@ -91,6 +91,8 @@ public:
VirtualDir GetLogoPartition() const;
u64 GetProgramTitleID() const;
+ u32 GetSystemUpdateVersion();
+ u64 GetSystemUpdateTitleID() const;
bool HasProgramNCA() const;
VirtualFile GetProgramNCAFile() const;
@@ -120,6 +122,8 @@ private:
std::shared_ptr<NCA> program;
std::vector<std::shared_ptr<NCA>> ncas;
+ u64 update_normal_partition_end;
+
Core::Crypto::KeyManager keys;
};
} // namespace FileSys