mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 05:17:52 +00:00
Forgot to apply suggestion here as well
This commit is contained in:
parent
a19dc3bf00
commit
24c1bb3842
1 changed files with 1 additions and 1 deletions
|
@ -392,7 +392,7 @@ void ShaderIR::SetInternalFlagsFromInteger(NodeBlock& bb, Node value, bool sets_
|
|||
Iterop(bb, value);
|
||||
break;
|
||||
case 2: // Genral Purpose Node
|
||||
if (const auto gpr = std::get_if<GprNode>(value.get())) {
|
||||
if (const auto* gpr = std::get_if<GprNode>(value.get())) {
|
||||
LOG_DEBUG(HW_GPU, "GprNode: index={}", gpr->GetIndex());
|
||||
Node zerop = Operation(OperationCode::LogicalIEqual, std::move(value),
|
||||
Immediate(gpr->GetIndex()));
|
||||
|
|
Loading…
Reference in a new issue