Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
Venomalia committed Jun 30, 2022
1 parent caef6ca commit 58b1614
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion TextureExtraction tool/Data/TextureExtractor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class Result
{
public TimeSpan TotalTime { get; internal set; }

public double ExtractionRate => Math.Round((double)100 / (ExtractedSize + SkippedSize) * ExtractedSize, 2);
public double ExtractionRate => Math.Round((double)100 / (ExtractedSize + SkippedSize) * ExtractedSize);

public int Extracted => Hash.Count();

Expand Down
2 changes: 1 addition & 1 deletion TextureExtraction tool/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ private static void PrintHelp()
static void PrintHeader()
{
Console.WriteLine("".PadLeft(64, '-'));
Console.WriteLine($"{System.Diagnostics.Process.GetCurrentProcess().ProcessName} v{System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString()} {DateTime.Now.ToString()}");
Console.WriteLine($"{System.Diagnostics.Process.GetCurrentProcess().ProcessName} v{System.Reflection.Assembly.GetExecutingAssembly().GetName().Version} {DateTime.Now.ToString()}");
Console.WriteLine("Supported formats: arc, szs, szp, cpk, bdl, bmd, tpl, bti");
Console.WriteLine("".PadLeft(64, '-'));
Console.WriteLine("INFO: currently no ROM images are supported, Please unpack them with dolphin into a folder.");
Expand Down
4 changes: 2 additions & 2 deletions TextureExtraction tool/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.3.0.0")]
[assembly: AssemblyFileVersion("0.3.0.0")]
[assembly: AssemblyVersion("0.4.0.0")]
[assembly: AssemblyFileVersion("0.4.0.0")]

0 comments on commit 58b1614

Please sign in to comment.