Merge pull request #508 from cxd4/looool

[RSP] Ternary, SHMERNARY!  Blasphemous.
This commit is contained in:
zilmar 2015-06-20 06:49:02 +10:00
commit d39b58ae9a
1 changed files with 1 additions and 5 deletions

View File

@ -503,11 +503,7 @@ void RSP_Vector_VMULF (void) {
temp.UW += 0x8000;
RSP_ACCUM[el].HW[2] = temp.HW[1];
RSP_ACCUM[el].HW[1] = temp.HW[0];
if ( RSP_ACCUM[el].HW[2] < 0 ) {
RSP_ACCUM[el].HW[3] = -1;
} else {
RSP_ACCUM[el].HW[3] = 0;
}
RSP_ACCUM[el].HW[3] = (RSP_ACCUM[el].HW[2] < 0) ? -1 : 0;
result.HW[el] = RSP_ACCUM[el].HW[2];
} else {
temp.W = 0x80000000;