Skip to content

Commit

Permalink
Fixed dumb issue where it didn't correctly check if caching hierarchi…
Browse files Browse the repository at this point in the history
…es should be done.
  • Loading branch information
MeltyPlayer committed Nov 16, 2024
1 parent f4a2811 commit 2e940d8
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,10 @@ public bool ShowSkeleton {

[GenerateInterface]
public partial class ExtractorSettings {
public bool CacheFileHierarchies { get; set; }
public bool CacheFileHierarchies {
get => FinConfig.CacheFileHierarchies;
set => FinConfig.CacheFileHierarchies = value;
}
public bool ExtractRomsInParallel { get; set; }
}

Expand Down

0 comments on commit 2e940d8

Please sign in to comment.