From 2d7e2d556778a01517afa1df1560053e54c6baa2 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sun, 12 Feb 2023 10:33:46 +0100 Subject: [PATCH] Fix bug in CPU detection code caused in recent commit Should be 0x49, not 49. Thanks rexx! --- r5dev/tier0/cpu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/tier0/cpu.cpp b/r5dev/tier0/cpu.cpp index 8cbefd48..21793721 100644 --- a/r5dev/tier0/cpu.cpp +++ b/r5dev/tier0/cpu.cpp @@ -415,7 +415,7 @@ static void InterpretIntelCacheDescriptors(uint32_t nPackedDesc, CPUInformation& int nFamily = (pi.m_nModel >> 8) & 0xF; int nModel = (pi.m_nModel >> 4) & 0xF; - if (nDesc == 49 && (nFamily != 0x0F || nModel != 0x06)) + if (nDesc == 0x49 && (nFamily != 0x0F || nModel != 0x06)) { pi.m_nL3CacheSizeKb = 0; pi.m_nL3CacheDesc = 0;