This commit is contained in:
Babz 2021-09-15 18:59:23 +02:00
parent 6dcf60753b
commit b55464fa71
1 changed files with 2 additions and 2 deletions

View File

@ -30,8 +30,8 @@ void init_wren_config(WrenConfiguration *config) {
wrenInitConfiguration(config);
config->reallocateFn = &wn_reallocate;
config->initialHeapSize = 16 * 1024; // 16 kiB
config->minHeapSize = 1024; // 1 kiB
config->initialHeapSize = 4 * 1024; // 4 kiB
config->minHeapSize = 1024; // 1 kiB
config->heapGrowthPercent = 50;
config->writeFn = &wn_write;
config->errorFn = &wn_error;