ps1/heap.c: bump heap size

This commit is contained in:
Xavier Del Campo Romero 2022-06-26 20:04:56 +02:00
parent c401b7663d
commit afc554167e
1 changed files with 1 additions and 1 deletions

View File

@ -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;