summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/frontend')
-rw-r--r--src/shader_recompiler/frontend/ir/basic_block.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/ir/basic_block.cpp b/src/shader_recompiler/frontend/ir/basic_block.cpp
index 50c6a83cd..da33ff6f1 100644
--- a/src/shader_recompiler/frontend/ir/basic_block.cpp
+++ b/src/shader_recompiler/frontend/ir/basic_block.cpp
@@ -87,7 +87,7 @@ static std::string ArgToIndex(const std::map<const Block*, size_t>& block_to_ind
87 } 87 }
88 switch (arg.Type()) { 88 switch (arg.Type()) {
89 case Type::U1: 89 case Type::U1:
90 return fmt::format("#{}", arg.U1() ? '1' : '0'); 90 return fmt::format("#{}", arg.U1() ? "true" : "false");
91 case Type::U8: 91 case Type::U8:
92 return fmt::format("#{}", arg.U8()); 92 return fmt::format("#{}", arg.U8());
93 case Type::U16: 93 case Type::U16: