mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 07:50:37 +00:00
Remove bounding in LD_C
This commit is contained in:
parent
b81260c65c
commit
c9f35d96be
1 changed files with 1 additions and 2 deletions
|
@ -552,8 +552,7 @@ private:
|
||||||
} else if (std::holds_alternative<OperationNode>(*offset)) {
|
} else if (std::holds_alternative<OperationNode>(*offset)) {
|
||||||
// Indirect access
|
// Indirect access
|
||||||
const std::string final_offset = code.GenerateTemporary();
|
const std::string final_offset = code.GenerateTemporary();
|
||||||
code.AddLine("uint " + final_offset + " = (ftou(" + Visit(offset) + ") / 4) & " +
|
code.AddLine("uint " + final_offset + " = (ftou(" + Visit(offset) + ") / 4);");
|
||||||
std::to_string(MAX_CONSTBUFFER_ELEMENTS - 1) + ';');
|
|
||||||
return fmt::format("{}[{} / 4][{} % 4]", GetConstBuffer(cbuf->GetIndex()),
|
return fmt::format("{}[{} / 4][{} % 4]", GetConstBuffer(cbuf->GetIndex()),
|
||||||
final_offset, final_offset);
|
final_offset, final_offset);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue