mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-21 03:54:45 +00:00
Update src/shader_recompiler/frontend/translate/vector_alu.cpp
Co-authored-by: TheTurtle <47210458+raphaelthegreat@users.noreply.github.com>
This commit is contained in:
parent
9e2f3ee2cf
commit
69e9aad212
1 changed files with 1 additions and 1 deletions
|
@ -361,7 +361,7 @@ void Translator::V_BFE_U32(bool is_signed, const GcnInst& inst) {
|
|||
SetDst(inst.dst[0], ir.BitFieldExtract(src0, src1, src2, is_signed));
|
||||
}
|
||||
|
||||
void Translator::V_MAD_I32_I24(const GcnInst& inst, bool performBitExtract) {
|
||||
void Translator::V_MAD_I32_I24(const GcnInst& inst, bool is_signed) {
|
||||
const IR::U32 src0{
|
||||
ir.BitFieldExtract(GetSrc(inst.src[0]), ir.Imm32(0), ir.Imm32(24), performBitExtract)};
|
||||
const IR::U32 src1{
|
||||
|
|
Loading…
Add table
Reference in a new issue