mirror of https://github.com/PCSX2/pcsx2.git
As previous commit - But check anywhere in the BIOS. It varies, the address i used was for Europe 1.7 only >.<
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5572 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
3f27730f45
commit
64474926f1
|
@ -525,7 +525,7 @@ template<int vunum> static void __fc vuMicroWrite64(u32 addr, const mem64_t* dat
|
|||
addr &= vunum ? 0x3fff: 0xfff;
|
||||
u64 tempdata;
|
||||
|
||||
if(cpuRegs.pc == 0x8000dff0)
|
||||
if(cpuRegs.pc >= 0x80000000 && cpuRegs.pc < 0x82000000)
|
||||
tempdata = (data[0] >> 32) | (data[0] << 32); //BIOS writes them in the wrong order apparently...
|
||||
else
|
||||
tempdata = data[0];
|
||||
|
|
Loading…
Reference in New Issue