aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;