Update src/shader_recompiler/frontend/maxwell/translate/impl/internal_stage_buffer_entry_read.cpp
All checks were successful
eden-license / license-header (pull_request) Successful in 16s
All checks were successful
eden-license / license-header (pull_request) Successful in 16s
Forgot to add the fallback if everything else in ISBERD results do default.
This commit is contained in:
parent
d63b68f357
commit
7323ffeb45
1 changed files with 3 additions and 1 deletions
|
@ -110,7 +110,9 @@ void TranslatorVisitor::ISBERD(u64 insn) {
|
||||||
if (isberd.skew != 0 && is_only_skew_op) {
|
if (isberd.skew != 0 && is_only_skew_op) {
|
||||||
IR::U32 result = ir.IAdd(X(isberd.src_reg), ir.LaneId());
|
IR::U32 result = ir.IAdd(X(isberd.src_reg), ir.LaneId());
|
||||||
X(isberd.dest_reg, result);
|
X(isberd.dest_reg, result);
|
||||||
}
|
} else {
|
||||||
|
X(isberd.dest_reg, X(isberd.src_reg));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Shader::Maxwell
|
} // namespace Shader::Maxwell
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue