diff --git a/src/wren_vm.c b/src/wren_vm.c index 7276a49d..0409bcfd 100644 --- a/src/wren_vm.c +++ b/src/wren_vm.c @@ -23,7 +23,7 @@ WrenVM* wrenNewVM(WrenReallocateFn reallocateFn) vm->bytesAllocated = 0; // TODO: Make this configurable. - vm->nextGC = 1024 * 1024 * 10; + vm->nextGC = 1024 * 1024 * 100; vm->first = NULL; vm->pinned = NULL;