summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend/ir/opcodes.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2022-05-14 22:46:15 +0200
committerLioncash <mathew1800@gmail.com>2022-05-14 22:48:34 +0200
commitf981e90af3a911596442aaf0f1e049f1b8e6003f (patch)
treebe27c0a623bfe7e0963863b7a49b5d76a060cbd7 /src/shader_recompiler/frontend/ir/opcodes.h
parentMerge pull request #8308 from german77/disablesix (diff)
downloadyuzu-f981e90af3a911596442aaf0f1e049f1b8e6003f.tar
yuzu-f981e90af3a911596442aaf0f1e049f1b8e6003f.tar.gz
yuzu-f981e90af3a911596442aaf0f1e049f1b8e6003f.tar.bz2
yuzu-f981e90af3a911596442aaf0f1e049f1b8e6003f.tar.lz
yuzu-f981e90af3a911596442aaf0f1e049f1b8e6003f.tar.xz
yuzu-f981e90af3a911596442aaf0f1e049f1b8e6003f.tar.zst
yuzu-f981e90af3a911596442aaf0f1e049f1b8e6003f.zip
Diffstat (limited to 'src/shader_recompiler/frontend/ir/opcodes.h')
-rw-r--r--src/shader_recompiler/frontend/ir/opcodes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcodes.h b/src/shader_recompiler/frontend/ir/opcodes.h
index d17dc0376..752879a18 100644
--- a/src/shader_recompiler/frontend/ir/opcodes.h
+++ b/src/shader_recompiler/frontend/ir/opcodes.h
@@ -103,6 +103,6 @@ struct fmt::formatter<Shader::IR::Opcode> {
}
template <typename FormatContext>
auto format(const Shader::IR::Opcode& op, FormatContext& ctx) {
- return format_to(ctx.out(), "{}", Shader::IR::NameOf(op));
+ return fmt::format_to(ctx.out(), "{}", Shader::IR::NameOf(op));
}
};