mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-07-04 23:31:19 +01:00
fixed a bug where ExeFs code was being incorrectly masked
This commit is contained in:
parent
235dddb3f1
commit
924e7b6af8
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ enum {
|
|||
EXEFS_CODE_SIZE = 0x03F00000,
|
||||
EXEFS_CODE_VADDR = 0x00100000, ///< ExeFS:/.code is loaded here
|
||||
EXEFS_CODE_VADDR_END = (EXEFS_CODE_VADDR + EXEFS_CODE_SIZE),
|
||||
EXEFS_CODE_MASK = (EXEFS_CODE_VADDR - 1),
|
||||
EXEFS_CODE_MASK = 0x03FFFFFF,
|
||||
|
||||
HEAP_SIZE = FCRAM_SIZE, ///< Application heap size
|
||||
//HEAP_PADDR = HEAP_GSP_SIZE,
|
||||
|
|
Loading…
Reference in a new issue