From cea014e99b4db0d16b5bb17bc4aad31dc257927b Mon Sep 17 00:00:00 2001 From: LittleCube Date: Sat, 4 Jan 2025 22:06:39 -0500 Subject: [PATCH] add indentation for return; line --- src/cgenerator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cgenerator.cpp b/src/cgenerator.cpp index 498afba..1ac63a8 100644 --- a/src/cgenerator.cpp +++ b/src/cgenerator.cpp @@ -478,7 +478,7 @@ void N64Recomp::CGenerator::emit_switch_error(uint32_t instr_vram, uint32_t jtbl void N64Recomp::CGenerator::emit_return(const Context& context) const { if (context.trace_mode) { - fmt::print(output_file, "TRACE_RETURN()\n"); + fmt::print(output_file, "TRACE_RETURN()\n "); } fmt::print(output_file, "return;\n"); }