mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
pm: fix memory profiles *again* (required for botw video update on 3.0)
This commit is contained in:
parent
2677cf68d4
commit
da68d02c77
1 changed files with 2 additions and 2 deletions
|
@ -182,8 +182,8 @@ void ResourceLimitUtils::InitializeLimits() {
|
|||
/* Atmosphere: Allocate extra memory (24 MiB) to SYSTEM away from Applet. */
|
||||
for (unsigned int i = 0; i < 6; i++) {
|
||||
g_memory_resource_limits[i][0] += ATMOSPHERE_EXTRA_SYSTEM_MEMORY_FOR_SYSMODULES;
|
||||
/* On < 4.0.0, taking from application instead of applet fixes a rare hang on boot. */
|
||||
if (kernelAbove400()) {
|
||||
/* On < 3.0.0, taking from application instead of applet fixes a rare hang on boot. */
|
||||
if (kernelAbove300()) {
|
||||
g_memory_resource_limits[i][2] -= ATMOSPHERE_EXTRA_SYSTEM_MEMORY_FOR_SYSMODULES;
|
||||
} else {
|
||||
g_memory_resource_limits[i][1] -= ATMOSPHERE_EXTRA_SYSTEM_MEMORY_FOR_SYSMODULES;
|
||||
|
|
Loading…
Reference in a new issue