击杀阵亡比
This commit is contained in:
@@ -112,13 +112,13 @@ namespace AnotherReplayReader
|
||||
}
|
||||
return plotter.PlayerLifes[i] < begin
|
||||
? "玩家已战败"
|
||||
: $"{v:#.##}";
|
||||
: $"{v:0.##}";
|
||||
}
|
||||
list.Insert(apmIndex, new(DataRow.PartialApmRow,
|
||||
list.Insert(apmIndex, new(DataRow.PartialApmRow,
|
||||
instantApms.Select(PartialApmToString)));
|
||||
}
|
||||
list.Insert(apmIndex, new(DataRow.AverageApmRow,
|
||||
avg.Select(v => $"{v:#.##}")));
|
||||
list.Insert(apmIndex, new(DataRow.AverageApmRow,
|
||||
avg.Select(v => $"{v:0.##}")));
|
||||
|
||||
return (list, data, plotter.ReplayLength, isPartial);
|
||||
});
|
||||
@@ -203,7 +203,7 @@ namespace AnotherReplayReader
|
||||
|
||||
private int NormalizeResolutionInput(string text)
|
||||
{
|
||||
if(!int.TryParse(text, out var value))
|
||||
if (!int.TryParse(text, out var value))
|
||||
{
|
||||
value = (int)PlotResolution.TotalSeconds;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user