From c9489ba16587af782320a4674c915ab607ad130f Mon Sep 17 00:00:00 2001 From: Agent X <44549182+Agent-11@users.noreply.github.com> Date: Tue, 7 Nov 2023 16:50:56 -0500 Subject: [PATCH] Small fix --- autogen/convert_constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen/convert_constants.py b/autogen/convert_constants.py index 3097197da..2a9934a17 100644 --- a/autogen/convert_constants.py +++ b/autogen/convert_constants.py @@ -165,7 +165,7 @@ def process_define(filename, line): if p.startswith('0x'): continue p = re.sub(r'0x[a-fA-F0-9]+', '', p) - if re.search('[a-z]', p) != None and "VERSION_TEXT" not in line and "SM64COOPDX" not in line: + if re.search('[a-z]', p) != None and "VERSION_TEXT" not in line: if 'gCurrentObject' not in line and verbose: print('UNRECOGNIZED DEFINE: ' + line) return None