mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fix bug in CPU detection code caused in recent commit
Should be 0x49, not 49. Thanks rexx!
This commit is contained in:
parent
e98a6c31e9
commit
2d7e2d5567
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user