mirror of
https://github.com/PCSX2/pcsx2.git
synced 2026-09-09 14:22:58 +02:00
GSdx:
* Fix BIOS graphical errors by re-introducing part of the PATH1 hacks, which is still needed until further notice. * Likely fix for DX10+ cards crashing on Configure... (still can't test directly because MSI sucks, sorry folks) git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3370 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
@@ -1563,22 +1563,26 @@ template<int index> void GSState::Transfer(uint8* mem, uint32 size)
|
||||
m_dump.Transfer(index, start, mem - start);
|
||||
}
|
||||
|
||||
/*if(index == 0)
|
||||
if(index == 0)
|
||||
{
|
||||
if(size == 0 && path.nloop > 0)
|
||||
{
|
||||
if(m_mt)
|
||||
{
|
||||
// TODO
|
||||
// Hackfix for BIOS, which sends an incomplete packek when it does an XGKICK without
|
||||
// having an EOP specified anywhere in VU1 memory. Needed until PCSX2 is fixed t
|
||||
// handle it more properly (ie, without looping infinitely).
|
||||
|
||||
path.nloop = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Unused in 0.9.7 and above, but might as well keep this for now; allows GSdx
|
||||
// to work with legacy editions of PCSX2.
|
||||
Transfer<0>(mem - 0x4000, 0x4000 / 16);
|
||||
}
|
||||
}
|
||||
}*/
|
||||
}
|
||||
}
|
||||
|
||||
template<class T> static void WriteState(uint8*& dst, T* src, size_t len = sizeof(T))
|
||||
|
||||
Reference in New Issue
Block a user