fix some read only display lists missing from display_lists.inl
Some checks are pending
Build coop / build-ubuntu (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
Build coop / build-macos-intel (push) Waiting to run

This commit is contained in:
Isaac0-dev 2025-04-08 12:54:08 +10:00
parent b190ee09fb
commit 56577a4a20
2 changed files with 1855 additions and 1854 deletions

View file

@ -80,7 +80,7 @@ CUSTOM_DEFINED = [
def main():
verbose = len(sys.argv) > 1 and (sys.argv[1] == "-v" or sys.argv[1] == "--verbose")
pattern = re.compile("[\W]+")
pattern = re.compile(r"[\W]+")
display_lists = []
for dir in DIRECTORIES:
for root, _, filenames in os.walk(dir):
@ -97,7 +97,7 @@ def main():
ignore = True
if "#endif" in line:
ignore = False
if not ignore and "Gfx" in line and "static" not in line and "extern" not in line and "#" not in line:
if not ignore and "Gfx" in line and "static " not in line and "extern" not in line and "#" not in line:
identifiers = pattern.sub(" ", line).split()
index_gfx = identifiers.index("Gfx")
name = identifiers[index_gfx + 1]

File diff suppressed because it is too large Load diff