mirror of https://github.com/PCSX2/pcsx2.git
fixed a warning in ir5900tables.c not 100% sure its correct, but it looks like what was wanted :p
git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@437 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
parent
1f63354774
commit
e0fc41331e
|
@ -488,7 +488,7 @@ void rpropBSC(EEINST* prev, EEINST* pinst)
|
|||
case 24: // daddi
|
||||
case 25: // daddiu
|
||||
rpropSetWrite(_Rt_, EEINST_LIVE1);
|
||||
rpropSetRead(_Rs_, EEINST_LIVE1 | (_Rs_!=0 && EEINST_MMX));
|
||||
rpropSetRead(_Rs_, EEINST_LIVE1 | (_Rs_!=0?EEINST_MMX:0)); // This looks like what ZeroFrog wanted; ToDo: Needs checking! (cottonvibes)
|
||||
break;
|
||||
|
||||
case 8: // addi
|
||||
|
|
Loading…
Reference in New Issue