[FAST486]

Don't leave the prefetch cache in a possibly invalid state if Fast486ReadLinearMemory
returns FALSE.


svn path=/trunk/; revision=65037
This commit is contained in:
Aleksandar Andrejevic 2014-10-27 00:21:06 +00:00
parent bc64e37fd1
commit 949c27964d

View file

@ -121,7 +121,11 @@ Fast486ReadMemory(PFAST486_STATE State,
Size);
return TRUE;
}
else return FALSE;
else
{
State->PrefetchValid = FALSE;
return FALSE;
}
}
else
#endif