aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2022-06-26 20:04:56 +0200
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2022-06-26 21:51:51 +0200
commitafc554167ea215ab10fa079e4ef541c45da1f867 (patch)
treebcc54987e13702b586f1d71fd5d292844a65eb5b /src
parentc401b7663d0854a7a3f5c35b6809faf65dc1fd66 (diff)
ps1/heap.c: bump heap size
Diffstat (limited to 'src')
-rw-r--r--src/gfx/ps1/src/heap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gfx/ps1/src/heap.c b/src/gfx/ps1/src/heap.c
index ab45d94..5ef8b80 100644
--- a/src/gfx/ps1/src/heap.c
+++ b/src/gfx/ps1/src/heap.c
@@ -13,7 +13,7 @@ void gfx_swapheap(void)
static void *get_element(const size_t sz)
{
- enum {HEAP_SZ = 5120, N_HEAPS = 2};
+ enum {HEAP_SZ = 6144, N_HEAPS = 2};
static char heaps[N_HEAPS][HEAP_SZ];
const size_t new_sz = heap_i + sz;
void *ret = NULL;