diff options
author | yuzubot <yuzu@yuzu-emu.org> | 2023-03-28 12:03:15 +0000 |
---|---|---|
committer | yuzubot <yuzu@yuzu-emu.org> | 2023-03-28 12:03:15 +0000 |
commit | 18a6fd6d2cf3dcda935e406a311cdc29ddf9350b (patch) | |
tree | a43b51a4056ad7664346a63f145c889da1f59d16 /src/common/x64/cpu_detect.cpp | |
parent | fbbf532d42f5688533d31f7fe6f75526b4187e5c (diff) |
"Merge Tagged PR 9982"mainline-0-1386
Diffstat (limited to 'src/common/x64/cpu_detect.cpp')
-rw-r--r-- | src/common/x64/cpu_detect.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/x64/cpu_detect.cpp b/src/common/x64/cpu_detect.cpp index e54383a4a8..72ed6e96c9 100644 --- a/src/common/x64/cpu_detect.cpp +++ b/src/common/x64/cpu_detect.cpp @@ -144,6 +144,7 @@ static CPUCaps Detect() { caps.bmi2 = Common::Bit<8>(cpu_id[1]); caps.sha = Common::Bit<29>(cpu_id[1]); + caps.waitpkg = Common::Bit<5>(cpu_id[2]); caps.gfni = Common::Bit<8>(cpu_id[2]); __cpuidex(cpu_id, 0x00000007, 0x00000001); |