From a529b7b4875d52d12e5cd83e79a215d0667cd3c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20Jos=C3=A9=20Garc=C3=ADa=20Garc=C3=ADa?= Date: Thu, 3 Oct 2019 14:33:33 +0200 Subject: [PATCH] [VITA] Add 64Mb of memory --- bootstrap/vita/sbrk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/vita/sbrk.c b/bootstrap/vita/sbrk.c index 013ba9503d..991e2f6c18 100644 --- a/bootstrap/vita/sbrk.c +++ b/bootstrap/vita/sbrk.c @@ -54,7 +54,7 @@ void _init_vita_heap(void) { if (&_newlib_heap_size_user != NULL) { _newlib_heap_size = _newlib_heap_size_user; }else{ - _newlib_heap_size = 192 * 1024 * 1024; + _newlib_heap_size = 256 * 1024 * 1024; } _newlib_heap_size -= _newlib_vm_size;