mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-08 13:11:49 +00:00
romfs: thank you fire emblem, very cool (closes #2021)
This commit is contained in:
parent
f1132fbf5a
commit
0dd071b279
3 changed files with 3 additions and 3 deletions
|
@ -361,7 +361,7 @@ namespace ams::kern::board::nintendo::nx {
|
|||
}();
|
||||
|
||||
/* Return (possibly) adjusted size. */
|
||||
constexpr size_t ExtraSystemMemoryForAtmosphere = 40_MB;
|
||||
constexpr size_t ExtraSystemMemoryForAtmosphere = 56_MB;
|
||||
return base_pool_size - ExtraSystemMemoryForAtmosphere - KTraceBufferSize;
|
||||
}
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ namespace ams {
|
|||
namespace {
|
||||
|
||||
/* TODO: we really shouldn't be using malloc just to avoid dealing with real allocator separation. */
|
||||
constexpr size_t MallocBufferSize = 16_MB;
|
||||
constexpr size_t MallocBufferSize = 32_MB;
|
||||
alignas(os::MemoryPageSize) constinit u8 g_malloc_buffer[MallocBufferSize];
|
||||
|
||||
}
|
||||
|
|
|
@ -33,7 +33,7 @@ namespace ams::pm::resource {
|
|||
constexpr size_t ReservedMemorySize600 = 5_MB;
|
||||
|
||||
/* Atmosphere always allocates extra memory for system usage. */
|
||||
constexpr size_t ExtraSystemMemorySizeAtmosphere = 24_MB;
|
||||
constexpr size_t ExtraSystemMemorySizeAtmosphere = 40_MB;
|
||||
|
||||
/* Desired extra threads. */
|
||||
constexpr u64 BaseApplicationThreads = 96;
|
||||
|
|
Loading…
Reference in a new issue