Skip to content

Commit

Permalink
Fix V_FRACT_F64 (#2156)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSvoboda authored Jan 15, 2025
1 parent 5a7d45f commit 1c3048c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shader_recompiler/frontend/translate/vector_alu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ void Translator::V_FREXP_MANT_F64(const GcnInst& inst) {
}

void Translator::V_FRACT_F64(const GcnInst& inst) {
const IR::F32 src0{GetSrc64<IR::F64>(inst.src[0])};
const IR::F64 src0{GetSrc64<IR::F64>(inst.src[0])};
SetDst64(inst.dst[0], ir.FPFract(src0));
}

Expand Down

0 comments on commit 1c3048c

Please sign in to comment.