mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-04-05 22:46:56 +00:00
rsx/fp: Fix lane mask computation for varying registers
This commit is contained in:
parent
80f972cd38
commit
83bfbc1399
1 changed files with 2 additions and 1 deletions
|
|
@ -343,7 +343,8 @@ namespace rsx::assembler::FP
|
|||
std::unordered_set<u32> inputs;
|
||||
SRC_Common src { .HEX = instruction->bytecode[operand + 1] };
|
||||
|
||||
if (src.reg_type != RSX_FP_REGISTER_TYPE_TEMP)
|
||||
if (src.reg_type != RSX_FP_REGISTER_TYPE_TEMP &&
|
||||
src.reg_type != RSX_FP_REGISTER_TYPE_INPUT)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue