diff options
author | bunnei <bunneidev@gmail.com> | 2017-12-29 03:38:38 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2017-12-29 03:38:38 +0100 |
commit | 6e021f22b8c61654aa1e72ceef16202a11d42016 (patch) | |
tree | 965a3c330f88ed6724c5315abb8e673d5af58b38 /src/core/memory.h | |
parent | process: Add method to mirror a memory region. (diff) | |
download | yuzu-6e021f22b8c61654aa1e72ceef16202a11d42016.tar yuzu-6e021f22b8c61654aa1e72ceef16202a11d42016.tar.gz yuzu-6e021f22b8c61654aa1e72ceef16202a11d42016.tar.bz2 yuzu-6e021f22b8c61654aa1e72ceef16202a11d42016.tar.lz yuzu-6e021f22b8c61654aa1e72ceef16202a11d42016.tar.xz yuzu-6e021f22b8c61654aa1e72ceef16202a11d42016.tar.zst yuzu-6e021f22b8c61654aa1e72ceef16202a11d42016.zip |
Diffstat (limited to 'src/core/memory.h')
-rw-r--r-- | src/core/memory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/memory.h b/src/core/memory.h index 8c60f1dd3..71ba487fc 100644 --- a/src/core/memory.h +++ b/src/core/memory.h @@ -136,7 +136,7 @@ enum : VAddr { /// Application heap (includes stack). HEAP_VADDR = 0x108000000, - HEAP_SIZE = 0x08000000, + HEAP_SIZE = 0x18000000, HEAP_VADDR_END = HEAP_VADDR + HEAP_SIZE, /// Area where shared memory buffers are mapped onto. |