Skip to content

Commit fc86b66

Browse files
committed
fix(aiv): do not invert y automagically when not specified
1 parent 4770e24 commit fc86b66

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

sourcehold/tool/convert/aiv/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ def convert_aiv(args):
2222
inp_format = 'aiv'
2323
elif inp.endswith(".json"):
2424
inp_format = "json"
25-
inp_invert_y = True
2625
else:
2726
inp_format_tokens = inp_format.split(",")
2827
if 'inverty' in inp_format_tokens:
@@ -34,7 +33,6 @@ def convert_aiv(args):
3433
if not out_format:
3534
if inp_format == "aiv":
3635
out_format = "json"
37-
out_invert_y = True
3836
elif inp_format == "json":
3937
out_format = "aiv"
4038
else:

0 commit comments

Comments
 (0)