From 3b2001b6dc43724e73cba3160cb05c0302b09303 Mon Sep 17 00:00:00 2001 From: Jeffrey Armstrong Date: Wed, 20 Nov 2024 20:36:20 -0500 Subject: Fixed parsing the Pascal inline data to remove the final parentheses --- support/in2data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'support') diff --git a/support/in2data.py b/support/in2data.py index 5f497a9..fa3b3e6 100644 --- a/support/in2data.py +++ b/support/in2data.py @@ -16,7 +16,7 @@ def pascal_to_basic(line): else: ret = ret + ", " - cnum = c[1:] + cnum = c[1:3] ret = ret + "&H" + cnum bytes = bytes + 1 -- cgit v1.2.3