diff options
author | purpasmart96 <kanzoconfigz@hotmail.com> | 2015-03-23 08:20:30 +0100 |
---|---|---|
committer | purpasmart96 <kanzoconfigz@hotmail.com> | 2015-03-24 02:53:22 +0100 |
commit | e0c72ec871295f453fd113000e9948095bffb7e5 (patch) | |
tree | 9d1e7a6b9f4b3fa8a4b8775d0039c9bf9cffdfb3 /src/core/hle | |
parent | Merge pull request #656 from Subv/nz (diff) | |
download | yuzu-e0c72ec871295f453fd113000e9948095bffb7e5.tar yuzu-e0c72ec871295f453fd113000e9948095bffb7e5.tar.gz yuzu-e0c72ec871295f453fd113000e9948095bffb7e5.tar.bz2 yuzu-e0c72ec871295f453fd113000e9948095bffb7e5.tar.lz yuzu-e0c72ec871295f453fd113000e9948095bffb7e5.tar.xz yuzu-e0c72ec871295f453fd113000e9948095bffb7e5.tar.zst yuzu-e0c72ec871295f453fd113000e9948095bffb7e5.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/config_mem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/config_mem.cpp b/src/core/hle/config_mem.cpp index b10c19d1d..40bae9346 100644 --- a/src/core/hle/config_mem.cpp +++ b/src/core/hle/config_mem.cpp @@ -65,9 +65,9 @@ void Init() { config_mem.sys_core_ver = 0x2; config_mem.unit_info = 0x1; // Bit 0 set for Retail 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.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.sys_mem_alloc = Memory::FCRAM_SIZE - (config_mem.app_mem_alloc + config_mem.base_mem_alloc); config_mem.firm_unk = 0; |