mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2025-12-28 18:26:49 +01:00
Implement IApplicationFunctions::GetDesiredLanguage
This commit is contained in:
parent
195b54602f
commit
7dbf4c1ae5
9 changed files with 1004 additions and 397 deletions
|
|
@ -87,6 +87,10 @@ u64 NACP::GetDefaultJournalSaveSize() const {
|
|||
return raw.user_account_save_data_journal_size;
|
||||
}
|
||||
|
||||
u32 NACP::GetSupportedLanguages() const {
|
||||
return raw.supported_languages;
|
||||
}
|
||||
|
||||
std::vector<u8> NACP::GetRawBytes() const {
|
||||
std::vector<u8> out(sizeof(RawNACP));
|
||||
std::memcpy(out.data(), &raw, sizeof(RawNACP));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue