From a7d354a72d22cde4de1494bf3475d8ea49e9cd2d Mon Sep 17 00:00:00 2001 From: gcontini <1121667+gcontini@users.noreply.github.com> Date: 周日, 15 3月 2020 11:00:39 +0800 Subject: [PATCH] fix compilation errors --- 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