Merge pull request #227 from GriffinRichards/fix-calcrom

Remove false positives from partial doc calcrom
This commit is contained in:
PikalaxALT 2020-01-16 15:47:51 -05:00 committed by GitHub
commit 7cddc40bbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,7 +66,7 @@ my $undoc_cmd = "grep '[Uu]nknown_[0-9a-fA-F]*\\|sub_[0-9a-fA-F]*'";
# This looks for every symbol with an address at the end of it. Some things are
# given a name based on their type / location, but still have an unknown purpose.
# For example, FooMap_EventScript_FFFFFFF.
my $partial_doc_cmd = "grep '[0-9a-fA-F]\\{6,7\\}'";
my $partial_doc_cmd = "grep '_[0-38][0-9a-fA-F]\\{5,6\\}'";
my $count_cmd = "wc -l";