mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-14 20:54:16 +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
|
||||
{
|
||||
ImGui.NewLine();
|
||||
var percentage = _modPackCount / (float)_currentModPackIdx;
|
||||
var percentage = (float)_currentModPackIdx / _modPackCount;
|
||||
ImGui.ProgressBar(percentage, size, $"Mod {_currentModPackIdx + 1} / {_modPackCount}");
|
||||
ImGui.NewLine();
|
||||
if (State == ImporterState.DeduplicatingFiles)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue