Skip to content
Snippets Groups Projects
Commit c4767f3b authored by bunnei's avatar bunnei
Browse files

Merge pull request #672 from purpasmart96/citra_moar_app_mem

ConfigMem: Set the app memory to be 96MB instead of the default 64MB
parents b3d4a10e e0c72ec8
No related branches found
No related tags found
No related merge requests found
...@@ -65,9 +65,9 @@ void Init() { ...@@ -65,9 +65,9 @@ void Init() {
config_mem.sys_core_ver = 0x2; config_mem.sys_core_ver = 0x2;
config_mem.unit_info = 0x1; // Bit 0 set for Retail config_mem.unit_info = 0x1; // Bit 0 set for Retail
config_mem.prev_firm = 0; config_mem.prev_firm = 0;
config_mem.app_mem_type = 0; // Defualt app mem type config_mem.app_mem_type = 0x2; // Default app mem type is 0
config_mem.unit_info = 0x1; // Bit 0 set for Retail config_mem.unit_info = 0x1; // Bit 0 set for Retail
config_mem.app_mem_alloc = 0x04000000; // Default app memory size is 64MB config_mem.app_mem_alloc = 0x06000000; // Set to 96MB, since some games use more than the default (64MB)
config_mem.base_mem_alloc = 0x01400000; // Default base memory is 20MB config_mem.base_mem_alloc = 0x01400000; // Default base memory is 20MB
config_mem.sys_mem_alloc = Memory::FCRAM_SIZE - (config_mem.app_mem_alloc + config_mem.base_mem_alloc); config_mem.sys_mem_alloc = Memory::FCRAM_SIZE - (config_mem.app_mem_alloc + config_mem.base_mem_alloc);
config_mem.firm_unk = 0; config_mem.firm_unk = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment