mirror of https://github.com/PCSX2/pcsx2.git
Core: Fix recLUT_SetPage in recResetIOP for ROM1, and ROM2 (#3753)
This commit is contained in:
parent
5858f72748
commit
491b6e12f7
|
@ -719,16 +719,16 @@ void recResetIOP()
|
||||||
|
|
||||||
for (int i=0x1e00; i<0x1e04; i++)
|
for (int i=0x1e00; i<0x1e04; i++)
|
||||||
{
|
{
|
||||||
recLUT_SetPage(psxRecLUT, psxhwLUT, recROM1, 0x0000, i, i - 0x1fc0);
|
recLUT_SetPage(psxRecLUT, psxhwLUT, recROM1, 0x0000, i, i - 0x1e00);
|
||||||
recLUT_SetPage(psxRecLUT, psxhwLUT, recROM1, 0x8000, i, i - 0x1fc0);
|
recLUT_SetPage(psxRecLUT, psxhwLUT, recROM1, 0x8000, i, i - 0x1e00);
|
||||||
recLUT_SetPage(psxRecLUT, psxhwLUT, recROM1, 0xa000, i, i - 0x1fc0);
|
recLUT_SetPage(psxRecLUT, psxhwLUT, recROM1, 0xa000, i, i - 0x1e00);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0x1e40; i < 0x1e48; i++)
|
for (int i = 0x1e40; i < 0x1e48; i++)
|
||||||
{
|
{
|
||||||
recLUT_SetPage(psxRecLUT, psxhwLUT, recROM2, 0x0000, i, i - 0x1fc0);
|
recLUT_SetPage(psxRecLUT, psxhwLUT, recROM2, 0x0000, i, i - 0x1e40);
|
||||||
recLUT_SetPage(psxRecLUT, psxhwLUT, recROM2, 0x8000, i, i - 0x1fc0);
|
recLUT_SetPage(psxRecLUT, psxhwLUT, recROM2, 0x8000, i, i - 0x1e40);
|
||||||
recLUT_SetPage(psxRecLUT, psxhwLUT, recROM2, 0xa000, i, i - 0x1fc0);
|
recLUT_SetPage(psxRecLUT, psxhwLUT, recROM2, 0xa000, i, i - 0x1e40);
|
||||||
}
|
}
|
||||||
|
|
||||||
if( s_pInstCache )
|
if( s_pInstCache )
|
||||||
|
|
Loading…
Reference in New Issue