mirror of https://github.com/cirruslabs/tart.git
use 64bit int for memory (#327)
This commit is contained in:
parent
f08ddf3855
commit
de993fbf6d
|
|
@ -11,7 +11,7 @@ struct Set: AsyncParsableCommand {
|
|||
var cpu: UInt16?
|
||||
|
||||
@Option(help: "VM memory size in megabytes")
|
||||
var memory: UInt16?
|
||||
var memory: UInt64?
|
||||
|
||||
@Option(help: "VM display resolution in a format of <width>x<height>. For example, 1200x800")
|
||||
var display: VMDisplayConfig?
|
||||
|
|
@ -29,7 +29,7 @@ struct Set: AsyncParsableCommand {
|
|||
}
|
||||
|
||||
if let memory = memory {
|
||||
try vmConfig.setMemory(memorySize: UInt64(memory) * 1024 * 1024)
|
||||
try vmConfig.setMemory(memorySize: memory * 1024 * 1024)
|
||||
}
|
||||
|
||||
if let display = display {
|
||||
|
|
|
|||
Loading…
Reference in New Issue