quick patch for 4.0.11 users with big files

master
Allen Webster 2016-09-24 11:37:49 -04:00
parent 7c8cbc4943
commit 79b1590ff0
1 changed files with 2 additions and 2 deletions

View File

@ -120,8 +120,8 @@ static General_Memory global_general;
void
init_memory(Application_Links *app){
int32_t part_size = (1 << 20);
int32_t general_size = (1 << 20);
int32_t part_size = (32 << 20);
int32_t general_size = (4 << 20);
void *part_mem = memory_allocate(app, part_size);