[Core] Fix TLB bounds check
This commit is contained in:
parent
25dde67f9d
commit
5b44212c2d
|
@ -243,7 +243,7 @@ void CTLB::SetupTLB_Entry(int index, bool Random)
|
|||
{
|
||||
continue;
|
||||
}
|
||||
if (m_FastTlb[FastIndx].PHYSSTART > 0x1FFFFFFF)
|
||||
if (m_FastTlb[FastIndx].PHYSEND > 0x1FFFFFFF)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue