Skip to content

Commit

Permalink
Final fix sequence processing
Browse files Browse the repository at this point in the history
  • Loading branch information
xoascf committed Nov 15, 2023
1 parent e7edf8a commit 53957a0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion OTRMod.CLI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -190,10 +190,12 @@ static void AutoGenerate(string? inputDir = null, string? outPath = null) {
if (metaPath is null)
continue;

Con.WriteLine($"Adding {dir}");
Con.WriteLine($"Adding {seqPath}");

string[] metas = File.ReadAllLines(metaPath, SturmScharf.EncodingProvider.Latin1);
byte[] seq = File.ReadAllBytes(seqPath);

ProcessSeq(metas, metaPath, seq);
}
}

Expand Down

0 comments on commit 53957a0

Please sign in to comment.