summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/maxwell
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell')
-rw-r--r--src/shader_recompiler/frontend/maxwell/opcodes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/opcodes.h b/src/shader_recompiler/frontend/maxwell/opcodes.h
index 83093fca0..72dd143c2 100644
--- a/src/shader_recompiler/frontend/maxwell/opcodes.h
+++ b/src/shader_recompiler/frontend/maxwell/opcodes.h
@@ -24,6 +24,6 @@ struct fmt::formatter<Shader::Maxwell::Opcode> {
24 } 24 }
25 template <typename FormatContext> 25 template <typename FormatContext>
26 auto format(const Shader::Maxwell::Opcode& opcode, FormatContext& ctx) { 26 auto format(const Shader::Maxwell::Opcode& opcode, FormatContext& ctx) {
27 return format_to(ctx.out(), "{}", NameOf(opcode)); 27 return fmt::format_to(ctx.out(), "{}", NameOf(opcode));
28 } 28 }
29}; 29};