From 3d06645e2e0781790d653937927592150eaf0989 Mon Sep 17 00:00:00 2001 From: Truman Kilen Date: Tue, 24 Sep 2024 12:29:31 -0500 Subject: [PATCH] Fix #4 part 2 --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 546368d..00772a0 100644 --- a/Program.cs +++ b/Program.cs @@ -345,7 +345,7 @@ static void GenCfgTree(EngineVersion ueVersion, string? mappings, string assetIn var outputPath = Path.Join(outputDir, Path.ChangeExtension(Path.GetFileName(assetPath), ".html")); Directory.CreateDirectory(outputDir); - UAsset asset = LoadAsset(ueVersion, mappings, assetPath); + UAsset asset = new UAsset(assetPath, ueVersion, usmap); var dot = new StringWriter(); if (new SummaryGenerator(asset, TextWriter.Null, dot).Summarize()) {