Update system.go

This commit is contained in:
spiritlhl
2024-05-07 17:23:07 +08:00
committed by GitHub
parent 2573456a20
commit 1543f69671

View File

@@ -51,8 +51,8 @@ func CheckSystemInfo(language string) string {
if runtime.GOOS != "windows" && runtime.GOOS != "macos" {
res += " AES-NI : " + ret.CpuAesNi + "\n"
}
res += " VM-x/AMD-V/Hyper-V : " + ret.CpuVAH + "\n"
res += " RAM : " + ret.MemoryUsage+" / "+ret.MemoryTotal + "\n"
res += " VM-x/AMD-V/Hyper-V : " + ret.CpuVAH + "\n"
res += " RAM : " + ret.MemoryUsage+" / "+ret.MemoryTotal + "\n"
if ret.VirtioBalloon != "" {
res += " Virtio Balloon : " + ret.VirtioBalloon + "\n"
}