mirror of https://github.com/PCSX2/pcsx2.git
Changed the "align" parameter from 0 to 1, since the docs say it has to be aligned.
git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@63 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
parent
10b54e80a9
commit
851f176c8e
|
@ -2607,7 +2607,7 @@ void recompileNextInstruction(int delayslot)
|
||||||
case 49: recLWC1_coX(g_pCurInstInfo->numpeeps); break;
|
case 49: recLWC1_coX(g_pCurInstInfo->numpeeps); break;
|
||||||
case 57: recSWC1_coX(g_pCurInstInfo->numpeeps); break;
|
case 57: recSWC1_coX(g_pCurInstInfo->numpeeps); break;
|
||||||
case 55: recLD_coX(g_pCurInstInfo->numpeeps); break;
|
case 55: recLD_coX(g_pCurInstInfo->numpeeps); break;
|
||||||
case 63: recSD_coX(g_pCurInstInfo->numpeeps, 0); break; //the 0 is just temporary, find out what should go there
|
case 63: recSD_coX(g_pCurInstInfo->numpeeps, 1); break;
|
||||||
default:
|
default:
|
||||||
assert(0);
|
assert(0);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue