mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-18 01:14:56 +00:00
Fix V_FRACT_F64 (#2156)
This commit is contained in:
parent
5a7d45fdfa
commit
1c3048ccc2
1 changed files with 1 additions and 1 deletions
|
@ -844,7 +844,7 @@ void Translator::V_FREXP_MANT_F64(const GcnInst& inst) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Translator::V_FRACT_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));
|
SetDst64(inst.dst[0], ir.FPFract(src0));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue