mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2026-06-05 19:56:57 +00:00
pgl: GetHostContentMetaInfo returns a ncm::ContentMetaType
This commit is contained in:
parent
2c7e2bfaae
commit
7d38bf16cd
@ -41,7 +41,8 @@ namespace ams::pgl {
|
|||||||
u32 version;
|
u32 version;
|
||||||
ncm::ContentType content_type;
|
ncm::ContentType content_type;
|
||||||
u8 id_offset;
|
u8 id_offset;
|
||||||
u8 reserved_0E[2];
|
ncm::ContentMetaType content_meta_type;
|
||||||
|
u8 reserved_0F;
|
||||||
|
|
||||||
static constexpr ContentMetaInfo Make(u64 id, u32 version, ncm::ContentType content_type, u8 id_offset) {
|
static constexpr ContentMetaInfo Make(u64 id, u32 version, ncm::ContentType content_type, u8 id_offset) {
|
||||||
return {
|
return {
|
||||||
|
|||||||
@ -345,10 +345,11 @@ namespace ams::pgl::srv {
|
|||||||
|
|
||||||
/* Get the content meta info. */
|
/* Get the content meta info. */
|
||||||
*out = {
|
*out = {
|
||||||
.id = reader.GetProgramId().value,
|
.id = reader.GetProgramId().value,
|
||||||
.version = reader.GetProgramVersion(),
|
.version = reader.GetProgramVersion(),
|
||||||
.content_type = ncm::ContentType::Program,
|
.content_type = ncm::ContentType::Program,
|
||||||
.id_offset = reader.GetProgramIndex(),
|
.id_offset = reader.GetProgramIndex(),
|
||||||
|
.content_meta_type = reader.GetContentMetaType(),
|
||||||
};
|
};
|
||||||
|
|
||||||
R_SUCCEED();
|
R_SUCCEED();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user