diff options
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/program.cpp')
| -rw-r--r-- | src/shader_recompiler/frontend/maxwell/program.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/program.cpp b/src/shader_recompiler/frontend/maxwell/program.cpp index 017c4b8fd..ccdab1dad 100644 --- a/src/shader_recompiler/frontend/maxwell/program.cpp +++ b/src/shader_recompiler/frontend/maxwell/program.cpp | |||
| @@ -22,7 +22,7 @@ IR::BlockList GenerateBlocks(const IR::AbstractSyntaxList& syntax_list) { | |||
| 22 | })}; | 22 | })}; |
| 23 | IR::BlockList blocks(std::ranges::distance(syntax_blocks)); | 23 | IR::BlockList blocks(std::ranges::distance(syntax_blocks)); |
| 24 | std::ranges::transform(syntax_blocks, blocks.begin(), | 24 | std::ranges::transform(syntax_blocks, blocks.begin(), |
| 25 | [](const IR::AbstractSyntaxNode& node) { return node.block; }); | 25 | [](const IR::AbstractSyntaxNode& node) { return node.data.block; }); |
| 26 | return blocks; | 26 | return blocks; |
| 27 | } | 27 | } |
| 28 | 28 | ||