From 7d4ede6369d9de02a2f590e1c647a521542cd446 Mon Sep 17 00:00:00 2001 From: LittleCube Date: Tue, 24 Dec 2024 22:08:25 -0500 Subject: [PATCH] fix TRACE_ENTRY emission --- src/recompilation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/recompilation.cpp b/src/recompilation.cpp index 1faef25..f4fe6c4 100644 --- a/src/recompilation.cpp +++ b/src/recompilation.cpp @@ -747,7 +747,7 @@ bool N64Recomp::recompile_function(const N64Recomp::Context& context, const N64R if (context.trace_mode) { fmt::print(output_file, - " TRACE_ENTRY();", + " TRACE_ENTRY()\n", func.name); }