mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2026-06-06 04:06:56 +00:00
Compare commits
No commits in common. "master" and "1.11.1" have entirely different histories.
@ -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.
|
||||||
|
|||||||
@ -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 {
|
||||||
|
|||||||
@ -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();
|
||||||
|
|||||||
@ -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. */
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user