gte: fix MAC0 shift (pcsxr issue #8874, shalma)
authornotaz <notasas@gmail.com>
Wed, 29 Jun 2011 23:03:25 +0000 (02:03 +0300)
committernotaz <notasas@gmail.com>
Thu, 7 Jul 2011 21:15:20 +0000 (00:15 +0300)
fixes missing elements in Soul Reaver and Spyro.

libpcsxcore/gte.c

index ec173b5..7efe7cf 100644 (file)
@@ -377,8 +377,8 @@ void gteRTPS() {
        gteSX2 = limG1(F((s64)gteOFX + ((s64)gteIR1 * quotient)) >> 16);
        gteSY2 = limG2(F((s64)gteOFY + ((s64)gteIR2 * quotient)) >> 16);
 
-       gteMAC0 = F((s64)(gteDQB + ((s64)gteDQA * quotient)) >> 12);
-       gteIR0 = limH(gteMAC0);
+       gteMAC0 = F((s64)gteDQB + ((s64)gteDQA * quotient));
+       gteIR0 = limH(gteMAC0 >> 12);
 }
 
 void gteRTPT() {
@@ -407,8 +407,8 @@ void gteRTPT() {
                fSX(v) = limG1(F((s64)gteOFX + ((s64)gteIR1 * quotient)) >> 16);
                fSY(v) = limG2(F((s64)gteOFY + ((s64)gteIR2 * quotient)) >> 16);
        }
-       gteMAC0 = F((s64)(gteDQB + ((s64)gteDQA * quotient)) >> 12);
-       gteIR0 = limH(gteMAC0);
+       gteMAC0 = F((s64)gteDQB + ((s64)gteDQA * quotient));
+       gteIR0 = limH(gteMAC0 >> 12);
 }
 
 void gteMVMVA() {