Browse Source

config: set RAMSlider max to 64GiB

You can always enter a custom size in the text box but it is 2025 and
64GiB is a common option.

Resolves #7234
osy 1 month ago
parent
commit
bfc44f05e6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Platform/Shared/RAMSlider.swift

+ 1 - 1
Platform/Shared/RAMSlider.swift

@@ -17,7 +17,7 @@
 import SwiftUI
 
 struct RAMSlider: View {
-    let validMemoryValues = [32, 64, 128, 256, 512, 768, 1024, 1536, 2048, 3072, 4096, 6144, 8192, 10240, 12288, 14336, 16384, 32768]
+    let validMemoryValues = [32, 64, 128, 256, 512, 768, 1024, 1536, 2048, 3072, 4096, 6144, 8192, 10240, 12288, 14336, 16384, 32768, 65536]
     
     let validateMemorySize: (Bool) -> Void
     @Binding var systemMemory: NSNumber?