Merge branch '4.0.11-patches' of https://bitbucket.org/4coder/4coder

master
Allen Webster 2016-09-24 17:04:13 -04:00
commit f006fed643
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);