diff options
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/structured_control_flow.cpp')
| -rw-r--r-- | src/shader_recompiler/frontend/maxwell/structured_control_flow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/structured_control_flow.cpp b/src/shader_recompiler/frontend/maxwell/structured_control_flow.cpp index 10d05dc4c..06fde0017 100644 --- a/src/shader_recompiler/frontend/maxwell/structured_control_flow.cpp +++ b/src/shader_recompiler/frontend/maxwell/structured_control_flow.cpp | |||
| @@ -174,7 +174,7 @@ std::string DumpTree(const Tree& tree, u32 indentation = 0) { | |||
| 174 | switch (stmt->type) { | 174 | switch (stmt->type) { |
| 175 | case StatementType::Code: | 175 | case StatementType::Code: |
| 176 | ret += fmt::format("{} Block {:04x} -> {:04x} (0x{:016x});\n", indent, | 176 | ret += fmt::format("{} Block {:04x} -> {:04x} (0x{:016x});\n", indent, |
| 177 | stmt->block->begin, stmt->block->end, | 177 | stmt->block->begin.Offset(), stmt->block->end.Offset(), |
| 178 | reinterpret_cast<uintptr_t>(stmt->block)); | 178 | reinterpret_cast<uintptr_t>(stmt->block)); |
| 179 | break; | 179 | break; |
| 180 | case StatementType::Goto: | 180 | case StatementType::Goto: |