Decrease libctru's linear memory heap

This commit is contained in:
Ian 2023-01-12 18:11:45 -05:00 committed by GitHub
parent ac56f0b765
commit 9dea6fd071
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,7 +26,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#define TICKS_PER_SEC 268123480.0 #define TICKS_PER_SEC 268123480.0
int __stacksize__ = 4 * 1024 * 1024; int __stacksize__ = 4 * 1024 * 1024;
u32 __ctru_linear_heap_size = 24 * 1024 * 1024; u32 __ctru_linear_heap_size = 16 * 1024 * 1024;
extern void Touch_Init(); extern void Touch_Init();
extern void Touch_Update(); extern void Touch_Update();
@ -333,4 +333,4 @@ int main (int argc, char **argv)
} }
return 0; return 0;
} }