[Core] Fix TLB bounds check

This commit is contained in:
shygoo 2020-11-22 13:06:50 -06:00
parent 25dde67f9d
commit 5b44212c2d
1 changed files with 1 additions and 1 deletions

View File

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