Skip to content

Commit 5988f37

Browse files
authored
Merge branch 'kernelwernel:main' into main
2 parents 21c0896 + d662c6a commit 5988f37

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/vmaware.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10904,9 +10904,9 @@ struct VM {
1090410904

1090510905
// ok so if the CPU is intel, the motherboard should be intel aswell (and same with AMD)
1090610906
// this doesnt happen in most public hardened configs out there so lets abuse it
10907-
constexpr unsigned int VID_INTEL = 0x8086;
10908-
constexpr unsigned int VID_AMD_ATI = 0x1002;
10909-
constexpr unsigned int VID_AMD_MICRO = 0x1022;
10907+
static constexpr unsigned int VID_INTEL = 0x8086;
10908+
static constexpr unsigned int VID_AMD_ATI = 0x1002;
10909+
static constexpr unsigned int VID_AMD_MICRO = 0x1022;
1091010910

1091110911
enum class MBVendor { Unknown = 0, Intel = 1, AMD = 2 };
1091210912

0 commit comments

Comments
 (0)