ME3Explorer.KFreonTPFTools3.MatchHashes C# (CSharp) Method

MatchHashes() private method

private MatchHashes ( ) : void
return void
        private void MatchHashes()
        {
            DebugOutput.PrintLn("Tree Texes: " + Tree.TexCount);
            DebugOutput.PrintLn("Checking for File Duplicates...");

            // KFreon: Deal with duplicates
            RemoveFileDuplicates();

            // KFreon: Redraw treeview
            //RedrawTreeView();

            this.Invoke(new Action(() =>
            {
                OverallProg.ChangeProgressBar(0, LoadedTexes.Where(tex => tex.found).Count());
                Overall.UpdateText("Searching tree for matches. Please Wait...");
            }));
        }
KFreonTPFTools3