mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 22:15:46 +00:00
aoc: Read DLC base title ID from RegisteredCache
Falls back to title ID + 0x1000, which is what HOS does.
This commit is contained in:
parent
d5e666d21c
commit
a9af7113be
3 changed files with 18 additions and 2 deletions
|
@ -56,6 +56,10 @@ u64 NACP::GetTitleId() const {
|
|||
return raw->title_id;
|
||||
}
|
||||
|
||||
u64 NACP::GetDLCBaseTitleId() const {
|
||||
return raw->dlc_base_title_id;
|
||||
}
|
||||
|
||||
std::string NACP::GetVersionString() const {
|
||||
return Common::StringFromFixedZeroTerminatedBuffer(raw->version_string.data(), 0x10);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue