mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-03 15:42:32 +00:00
Remove outdated comment (real cause found/fixed.)
This commit is contained in:
parent
0edeb085ab
commit
252100aee5
@ -1180,7 +1180,7 @@ namespace MIPSComp
|
||||
for (int i = 0; i < n; i++) {
|
||||
fpr.MapDirtyInV(tempregs[i], sregs[i]);
|
||||
switch ((op >> 21) & 0x1f) {
|
||||
case 16: /* TODO */ break; //n (round_vfpu_n causes issue #3011 but seems right according to tests...)
|
||||
case 16: /* TODO */ break; //n
|
||||
case 17:
|
||||
if (mult != 1.0f) {
|
||||
VMUL(S0, fpr.V(sregs[i]), S1);
|
||||
|
@ -636,7 +636,7 @@ namespace MIPSInt
|
||||
} else {
|
||||
switch ((op >> 21) & 0x1f)
|
||||
{
|
||||
case 16: d[i] = (int)round_vfpu_n(sv); break; //(floor(sv + 0.5f)); break; //n (round_vfpu_n causes issue #3011 but seems right according to tests...)
|
||||
case 16: d[i] = (int)round_vfpu_n(sv); break; //(floor(sv + 0.5f)); break; //n
|
||||
case 17: d[i] = s[i]>=0 ? (int)floor(sv) : (int)ceil(sv); break; //z
|
||||
case 18: d[i] = (int)ceil(sv); break; //u
|
||||
case 19: d[i] = (int)floor(sv); break; //d
|
||||
|
@ -1377,7 +1377,7 @@ void Jit::Comp_Vf2i(MIPSOpcode op) {
|
||||
MINSD(XMM0, M(&maxIntAsDouble));
|
||||
MAXSD(XMM0, M(&minIntAsDouble));
|
||||
switch ((op >> 21) & 0x1f) {
|
||||
case 16: /* TODO */ break; //n (round_vfpu_n causes issue #3011 but seems right according to tests...)
|
||||
case 16: /* TODO */ break; //n
|
||||
case 17: CVTTSD2SI(EAX, R(XMM0)); break; //z - truncate
|
||||
case 18: /* TODO */ break; //u
|
||||
case 19: /* TODO */ break; //d
|
||||
|
Loading…
x
Reference in New Issue
Block a user