Fix checker progress derp

This commit is contained in:
Sky 2013-12-11 09:39:25 +00:00
parent 26a7544325
commit 3e8e0dd639

View File

@ -201,7 +201,7 @@ void JavaListLoadTask::executeTask()
void JavaListLoadTask::checkerProgress(int current, int total)
{
float progress = (current * 100.0) / (current + total);
float progress = (current * 100.0) / total;
this->setProgress((int) progress);
}