mirror of https://github.com/PCSX2/pcsx2.git
Game fixes: Extended the OPH hack a bit to set APATH to each path in turn in addition. Should make the hack fix some Eurocom games (Sphinx and the Cursed Mummy, some Buffy thing, others?)
VIF: changed a memcpy_aligned on 64-bit aligned data to memcpy_fast. Doesn't matter with the current memcpy set we use but could have caused a crash in the future. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5373 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
0e3a7f74be
commit
6669b7d6ef
|
@ -263,7 +263,7 @@ static __fi void _vifCode_MPG(int idx, u32 addr, const u32 *data, int size) {
|
|||
// Clear VU memory before writing!
|
||||
if (!idx) CpuVU0->Clear(addr, size*4);
|
||||
else CpuVU1->Clear(addr, size*4);
|
||||
memcpy_aligned(VUx.Micro + addr, data, size*4); //from tests, memcpy is 1fps faster on Grandia 3 than memcpy_fast
|
||||
memcpy_fast(VUx.Micro + addr, data, size*4); //from tests, memcpy is 1fps faster on Grandia 3 than memcpy_fast
|
||||
//}
|
||||
}
|
||||
|
||||
|
|
|
@ -282,10 +282,14 @@ static __ri void DmaExec( void (*func)(), u32 mem, u32 value )
|
|||
template< uint page >
|
||||
__fi u32 dmacRead32( u32 mem )
|
||||
{
|
||||
// Fixme: OPH hack. Toggle the flag on each GIF_STAT access. (rama)
|
||||
// Fixme: OPH hack. Toggle the flag on GIF_STAT access. (rama)
|
||||
if (IsPageFor(mem) && (mem == GIF_STAT) && CHECK_OPHFLAGHACK)
|
||||
{
|
||||
gifRegs.stat.OPH = !gifRegs.stat.OPH;
|
||||
static unsigned counter = 1;
|
||||
if (++counter == 8)
|
||||
counter = 2;
|
||||
// Set OPH and APATH from counter, cycling paths and alternating OPH
|
||||
return gifRegs.stat._u32 & ~(7 << 9) | (counter & 1 ? counter << 9 : 0);
|
||||
}
|
||||
|
||||
return psHu32(mem);
|
||||
|
|
Loading…
Reference in New Issue