Skip to content

Commit 85350c0

Browse files
authored
allow numerics in SCREEN filename enums
1 parent 5c56a0b commit 85350c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eznsf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ def printbin(s,name):
461461
def ppu_file_enum(s):
462462
so = ""
463463
for c in s:
464-
so += c if ((c>='a' and c<='z') or (c>='A' and c<='Z')) else "_"
464+
so += c if ((c>='a' and c<='z') or (c>='A' and c<='Z') or (c>='0' and c<='9')) else "_"
465465
return so
466466

467467
s = ""

0 commit comments

Comments
 (0)