Skip to content

Commit

Permalink
msvc/arm64: fix shadowed variable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
shuffle2 committed Jan 22, 2022
1 parent 7b8e846 commit acf6e24
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -113,7 +113,7 @@ void JitArm64::fp_arith(UGeckoInstruction inst)
ASSERT_MSG(DYNA_REC, !inputs_are_singles, "Tried to apply 25-bit precision to single");

V0Q = fpr.GetReg();
const ARM64Reg V1Q = fpr.GetReg();
V1Q = fpr.GetReg();

Force25BitPrecision(reg_encoder(V0Q), VC, reg_encoder(V1Q));
VC = reg_encoder(V0Q);
Expand Down

0 comments on commit acf6e24

Please sign in to comment.