Skip to content

Commit

Permalink
Switch remaining strings to normal
Browse files Browse the repository at this point in the history
  • Loading branch information
galaxyhaxz committed Feb 21, 2025
1 parent db87b4b commit 771c12d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/splat/segtypes/common/c.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 771c12d

Please sign in to comment.