diff options
author | entrpntr <entrpntr@gmail.com> | 2020-05-14 14:25:42 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-05-14 14:25:42 -0400 |
commit | 6c4c421f18fa5ed8f42c260d17edb8ea52ba8112 (patch) | |
tree | b1e5d7ea4700bd599141eb950917aba80cb56639 /tools | |
parent | a30d695331b33a3a43b70539b0577f5c7f6c6bca (diff) |
Match pokecrystal file names and folder structure, tools updates.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/unused_sources.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/unused_sources.sh b/tools/unused_sources.sh index 2b8cc59b..24fbc27d 100755 --- a/tools/unused_sources.sh +++ b/tools/unused_sources.sh @@ -12,6 +12,6 @@ for asm in $toplevel; do python tools/scan_includes.py "$asm" echo done | tr ' ' '\n' | sort -u > includes.txt -git ls-files | grep -E '\.(asm|pal|lz|[1,2]bpp|blk|bin|rle|tilemap)$' | sort -u > sources.txt +git ls-files | grep -E '\.(asm|gbcpal|pal|lz|[1,2]bpp|blk|bin|rle|attrmap|tilemap|dimensions)$' | sort -u > sources.txt comm -23 sources.txt includes.txt rm sources.txt includes.txt |