Fix bug in CPU detection code caused in recent commit

Should be 0x49, not 49. Thanks rexx!
This commit is contained in:
Kawe Mazidjatari 2023-02-12 10:33:46 +01:00
parent e98a6c31e9
commit 2d7e2d5567

View File

@ -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;