Compare commits

..

No commits in common. "master" and "1.11.1" have entirely different histories.

4 changed files with 5 additions and 15 deletions

View File

@ -1,7 +1,4 @@
# Changelog # Changelog
## 1.11.1
+ Basic support was added for 22.1.0.
+ General system stability improvements to enhance the user's experience.
## 1.11.0 ## 1.11.0
+ Support was added for 22.0.0. + Support was added for 22.0.0.
+ Special thanks to @alula for handling a large chunk of the necessary kernel, loader and erpt changes. + Special thanks to @alula for handling a large chunk of the necessary kernel, loader and erpt changes.

View File

@ -41,8 +41,7 @@ namespace ams::pgl {
u32 version; u32 version;
ncm::ContentType content_type; ncm::ContentType content_type;
u8 id_offset; u8 id_offset;
ncm::ContentMetaType content_meta_type; u8 reserved_0E[2];
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 {

View File

@ -345,11 +345,10 @@ 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();

View File

@ -36,11 +36,6 @@ namespace ams::mitm::fs {
}; };
constexpr const ApplicationWithDynamicHeapInfo ApplicationsWithDynamicHeap[] = { constexpr const ApplicationWithDynamicHeapInfo ApplicationsWithDynamicHeap[] = {
/* Until Then. */
/* Requirement ~34 MB. */
/* No particular heap sensitivity. */
{ 0x010019C023004000, 16_MB, 0_MB },
/* Trails in the Sky 1st Chapter. */ /* Trails in the Sky 1st Chapter. */
/* Requirement ? MB. 16 MB stolen heap fixes a crash, though. */ /* Requirement ? MB. 16 MB stolen heap fixes a crash, though. */
/* Unknown heap sensitivity. */ /* Unknown heap sensitivity. */