add indentation for return; line

This commit is contained in:
LittleCube 2025-01-04 22:06:39 -05:00
parent 75a9a58a80
commit cea014e99b

View file

@ -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 { void N64Recomp::CGenerator::emit_return(const Context& context) const {
if (context.trace_mode) { if (context.trace_mode) {
fmt::print(output_file, "TRACE_RETURN()\n"); fmt::print(output_file, "TRACE_RETURN()\n ");
} }
fmt::print(output_file, "return;\n"); fmt::print(output_file, "return;\n");
} }