Skip to content

Commit

Permalink
Change interface folder parsing to recursive
Browse files Browse the repository at this point in the history
  • Loading branch information
malashin committed Jun 18, 2022
1 parent c08188e commit 765df58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser.go
Expand Up @@ -733,7 +733,7 @@ func traverseGUI(root *ptool.TNode) error {
}

func parseGFX(path string, i int) error {
gfxFiles, err := filepath.Glob(filepath.Join(path, "interface", "*.gfx"))
gfxFiles, err := WalkMatchExt(filepath.Join(path, "interface"), ".gfx")
if err != nil {
return err
}
Expand Down

0 comments on commit 765df58

Please sign in to comment.