Fixing issue displaying negative numbers when download sizes are bigger than 2 GB (closes #925)

This commit is contained in:
Alexander Bock
2019-07-31 11:46:20 +02:00
parent c7c8375ca0
commit 87ce1925b9
3 changed files with 6 additions and 14 deletions
+2 -2
View File
@@ -86,8 +86,8 @@ public:
struct ProgressInfo {
float progress = 0.f;
int currentSize = -1;
int totalSize = -1;
int64_t currentSize = -1;
int64_t totalSize = -1;
};
void updateItem(const std::string& itemIdentifier, const std::string& itemName,