Fix typo in progress

This commit is contained in:
Matt Nadareski
2021-03-25 22:56:17 -07:00
parent 2d19d51bc7
commit cf4d2f5055

View File

@@ -184,7 +184,7 @@ namespace MPF.UserControls
{
float percentProgress = (current / (float)total) * 100;
ProgressBar.Value = percentProgress;
ProgressLabel.Text = string.Format("Scanning sectors for anit-mod string... ({0:##.##}%)", percentProgress);
ProgressLabel.Text = string.Format("Scanning sectors for anti-mod string... ({0:##.##}%)", percentProgress);
}
}));