mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fix bug in 'FindIntelCacheDesc'
It never iterates over the static arrays.
This commit is contained in:
parent
2e7786a4cf
commit
78288796e2
@ -389,9 +389,10 @@ static void FindIntelCacheDesc(uint8_t nDesc, const IntelCacheDesc_t* pDesc, int
|
||||
{
|
||||
for (int i = 0; i < nDescCount; ++i)
|
||||
{
|
||||
if (pDesc->nDesc == nDesc)
|
||||
const IntelCacheDesc_t& desc = pDesc[i];
|
||||
if (desc.nDesc == nDesc)
|
||||
{
|
||||
nCache = pDesc->nCacheSize;
|
||||
nCache = desc.nCacheSize;
|
||||
nCacheDesc = nDesc;
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user