We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae3dfeb commit d50d0c0Copy full SHA for d50d0c0
src/vmaware.hpp
@@ -11208,7 +11208,7 @@ struct VM {
11208
return false;
11209
}
11210
11211
- // Surface Pro models typically do not have PIT
+ // Surface Pro models typically do not have PIT, some devices might have it but not expose it due to firmware bugs (i.e. Lenovo 83AG)
11212
{
11213
const char* manufacturer = nullptr;
11214
const char* model = nullptr;
@@ -13002,7 +13002,7 @@ std::array<VM::core::technique, VM::enum_size + 1> VM::core::technique_table = [
13002
{VM::TRAP, {100, VM::trap}},
13003
{VM::ACPI_SIGNATURE, {100, VM::acpi_signature}},
13004
{VM::NVRAM, {100, VM::nvram}},
13005
- {VM::CLOCK, {90, VM::clock}},
+ {VM::CLOCK, {45, VM::clock}},
13006
{VM::POWER_CAPABILITIES, {45, VM::power_capabilities}},
13007
{VM::CPU_HEURISTIC, {90, VM::cpu_heuristic}},
13008
{VM::BOOT_LOGO, {100, VM::boot_logo}},
0 commit comments