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:
refraction@gmail.com 2013-02-24 15:24:28 +00:00
parent 3f27730f45
commit 64474926f1
1 changed files with 1 additions and 1 deletions

View File

@ -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];