From 771c12df9365d4ca2d8eb4691b891404c0913e73 Mon Sep 17 00:00:00 2001 From: galaxyhaxz Date: Fri, 21 Feb 2025 14:48:10 -0600 Subject: [PATCH] Switch remaining strings to normal --- src/splat/segtypes/common/c.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/splat/segtypes/common/c.py b/src/splat/segtypes/common/c.py index 18fcb848..5e1d08ec 100644 --- a/src/splat/segtypes/common/c.py +++ b/src/splat/segtypes/common/c.py @@ -385,10 +385,10 @@ def get_c_line_include_macro( if options.opts.use_legacy_include_asm: rel_asm_out_dir = asm_out_dir.relative_to(options.opts.nonmatchings_path) - final_path = f"{(rel_asm_out_dir / self.name).as_posix()}" + final_path = (rel_asm_out_dir / self.name).as_posix() return f'{macro_name}(const s32, "{final_path}", {sym.filename});' - final_path = f"{(asm_out_dir / self.name).as_posix()}" + final_path = (asm_out_dir / self.name).as_posix() return f'{macro_name}("{final_path}", {sym.filename});' def get_c_lines_for_function(