From e37d6f0a78c75b5af934491e6764dacb6e9170e9 Mon Sep 17 00:00:00 2001 From: Nico de Poel Date: Fri, 30 Jul 2021 15:59:19 +0200 Subject: [PATCH] Bumped heap space to 256 MB since we'll need to go there sooner or later anyway --- Assets/Scripts/UniQuake.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/UniQuake.cs b/Assets/Scripts/UniQuake.cs index f7cd791..bdf2f81 100644 --- a/Assets/Scripts/UniQuake.cs +++ b/Assets/Scripts/UniQuake.cs @@ -5,7 +5,7 @@ using UnityEngine; public partial class UniQuake: MonoBehaviour { - private const int DefaultMemSize = 0x8000000; // 128 MB of heap space + private const int DefaultMemSize = 0x10000000; // 256 MB of heap space public int memorySize = DefaultMemSize;