From 3e8e0dd639d68acddb7c96b89cc0ca5629a1942c Mon Sep 17 00:00:00 2001 From: Sky Date: Wed, 11 Dec 2013 09:39:25 +0000 Subject: Fix checker progress derp --- logic/lists/JavaVersionList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'logic/lists/JavaVersionList.cpp') diff --git a/logic/lists/JavaVersionList.cpp b/logic/lists/JavaVersionList.cpp index bc177f09..f69c2b59 100644 --- a/logic/lists/JavaVersionList.cpp +++ b/logic/lists/JavaVersionList.cpp @@ -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); } -- cgit v1.2.3