diff options
| author | Zach Hilman <zachhilman@gmail.com> | 2019-04-10 10:23:13 -0400 |
|---|---|---|
| committer | Zach Hilman <zachhilman@gmail.com> | 2019-09-21 16:43:10 -0400 |
| commit | e018a48460ca35403e53f319eb5f89135475d81a (patch) | |
| tree | 7233beba1cb0569e0fb7e19227ef1a93401c9fe0 /src/core/file_sys/content_archive.cpp | |
| parent | b4164d295b052cb7ba0962b443691a224e0a6598 (diff) | |
content_archive: Add accessors for Rights ID and SDK Version
Diffstat (limited to 'src/core/file_sys/content_archive.cpp')
| -rw-r--r-- | src/core/file_sys/content_archive.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/file_sys/content_archive.cpp b/src/core/file_sys/content_archive.cpp index ce5c69b41..ea5c92f61 100644 --- a/src/core/file_sys/content_archive.cpp +++ b/src/core/file_sys/content_archive.cpp @@ -528,6 +528,14 @@ u64 NCA::GetTitleId() const { return header.title_id; } +std::array<u8, 16> NCA::GetRightsId() const { + return header.rights_id; +} + +u32 NCA::GetSDKVersion() const { + return header.sdk_version; +} + bool NCA::IsUpdate() const { return is_update; } |
