Skip to content

Commit

Permalink
Fix #4 part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
trumank committed Sep 24, 2024
1 parent 118751a commit 3d06645
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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()) {
Expand Down

0 comments on commit 3d06645

Please sign in to comment.