Skip to content

Commit

Permalink
a warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Jun 6, 2024
1 parent 63c5b91 commit fa2610a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/MIPS/MIPSIntVFPU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2128,7 +2128,7 @@ namespace MIPSInt
ApplySwizzleT(&t[n - 1], V_Single, -INFINITY);
}

for (int i = 0; i < n; i++) {
for (int i = 0; i < (int)n; i++) {
switch (optype) {
case 0: d.f[i] = s[i] + t[i]; break; //vadd
case 1: d.f[i] = s[i] - t[i]; break; //vsub
Expand Down

0 comments on commit fa2610a

Please sign in to comment.