From 79b1b57045e86d9845e352c3f2aa0efbab6111a9 Mon Sep 17 00:00:00 2001 From: gcontini <1121667+gcontini@users.noreply.github.com> Date: 周六, 14 3月 2020 10:19:09 +0800 Subject: [PATCH] tests and improvements --- src/library/os/windows/execution_environment.cpp | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/library/os/windows/execution_environment.cpp b/src/library/os/windows/execution_environment.cpp index 86513d5..03c789e 100644 --- a/src/library/os/windows/execution_environment.cpp +++ b/src/library/os/windows/execution_environment.cpp @@ -25,9 +25,9 @@ if (InitEntryPoints()) { BIOSReader reader; SystemInformation info = reader.readSystemInfo(); - sys_vendor = toupper_copy(info.Manufacturer); - bios_vendor = toupper_copy(info.ProductName); - bios_description = toupper_copy(info.SysVersion) + toupper_copy(info.family); + m_sys_vendor = toupper_copy(info.Manufacturer); + m_bios_vendor = toupper_copy(info.ProductName); + m_bios_description = toupper_copy(info.SysVersion) + toupper_copy(info.family); } } -- Gitblit v1.9.1