qt: add verification for installed contents

This commit is contained in:
Liam
2023-09-11 23:50:36 -04:00
parent 66f2947854
commit f8985d1cc5
7 changed files with 148 additions and 1 deletions

View File

@ -45,6 +45,10 @@ CNMT::CNMT(CNMTHeader header_, OptionalHeader opt_header_,
CNMT::~CNMT() = default;
const CNMTHeader& CNMT::GetHeader() const {
return header;
}
u64 CNMT::GetTitleID() const {
return header.title_id;
}