From 163ef9f79e502e691d56cb4104a1a695a3963f82 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sat, 19 Mar 2022 22:08:35 -0400 Subject: [PATCH] Increase scratch buffer size --- src/hello/scratch.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hello/scratch.d b/src/hello/scratch.d index 21c0531..dbb5db8 100644 --- a/src/hello/scratch.d +++ b/src/hello/scratch.d @@ -1,4 +1,4 @@ -align(4096) __gshared ubyte[512 * 1024] scratch; +align(4096) __gshared ubyte[1024 * 1024] scratch; __gshared size_t scratch_used; size_t scratch_free()