mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-16 21:54:19 +01:00
Fix inverted percentage, skill.
This commit is contained in:
parent
a0328aab35
commit
a9f36c6aef
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ public partial class TexToolsImporter
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ImGui.NewLine();
|
ImGui.NewLine();
|
||||||
var percentage = _modPackCount / (float)_currentModPackIdx;
|
var percentage = (float)_currentModPackIdx / _modPackCount;
|
||||||
ImGui.ProgressBar(percentage, size, $"Mod {_currentModPackIdx + 1} / {_modPackCount}");
|
ImGui.ProgressBar(percentage, size, $"Mod {_currentModPackIdx + 1} / {_modPackCount}");
|
||||||
ImGui.NewLine();
|
ImGui.NewLine();
|
||||||
if (State == ImporterState.DeduplicatingFiles)
|
if (State == ImporterState.DeduplicatingFiles)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue