mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-02 09:55:55 +00:00
- Little piece availability computation optimization
This commit is contained in:
parent
4f9eca78d9
commit
1bfadf5219
@ -60,8 +60,8 @@ public:
|
||||
painter.drawPoint(0,0);
|
||||
} else {
|
||||
// Look for maximum value
|
||||
average = std::accumulate(avail.begin(), avail.end(), 0)/(double)avail.size();
|
||||
uint nb_pieces = avail.size();
|
||||
average = std::accumulate(avail.begin(), avail.end(), 0)/(double)nb_pieces;
|
||||
pixmap = QPixmap(nb_pieces, 1);
|
||||
QPainter painter(&pixmap);
|
||||
std::vector<int>::iterator it;
|
||||
|
Loading…
x
Reference in New Issue
Block a user