diff options
| author | GriffinR <griffin.g.richards@gmail.com> | 2021-11-13 15:54:40 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-13 15:54:40 -0500 |
| commit | b14fe9dce369b1a78c5f4f653b4c7e2e2d67d98d (patch) | |
| tree | ff1f6209a92bc3a92c102bb4a18ca8a7fa907af7 /.github | |
| parent | ef935f6f4a59a2b37c4ff870ade96853621210ae (diff) | |
| parent | 57be596ce43bed86594412d598d3058c4a3d1d2d (diff) | |
Merge pull request #1547 from GriffinRichards/doc-sounddata
Clean up sound, add CRY_MODE constants
Diffstat (limited to '.github')
| -rwxr-xr-x | .github/calcrom/calcrom.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/calcrom/calcrom.pl b/.github/calcrom/calcrom.pl index c351c7612..37ebcb4d2 100755 --- a/.github/calcrom/calcrom.pl +++ b/.github/calcrom/calcrom.pl @@ -63,14 +63,14 @@ while (my $line = <$file>) # though. Uniq is pretty fast! my $base_cmd = "nm $elffname | awk '{print \$3}' | grep '^[^_].\\{4\\}' | uniq"; -# This looks for Unknown_, Unknown_, or sub_, followed by just numbers. Note that +# This looks for Unknown_, Unknown_, or sub_, followed by an address. Note that # it matches even if stuff precedes the unknown, like sUnknown/gUnknown. -my $undoc_cmd = "grep '[Uu]nknown_[0-9a-fA-F]*\\|sub_[0-9a-fA-F]*'"; +my $undoc_cmd = "grep '[Uu]nknown_[0-9a-fA-F]\\{5,7\\}\\|sub_[0-9a-fA-F]\\{5,7\\}'"; # 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-28][0-9a-fA-F]\\{5,6\\}'"; +my $partial_doc_cmd = "grep '_[0-28][0-9a-fA-F]\\{5,7\\}'"; my $count_cmd = "wc -l"; |
