mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-09 17:44:01 -07:00
fix build failure
This commit is contained in:
parent
0fc41078d9
commit
b75cd22649
1 changed files with 4 additions and 1 deletions
|
|
@ -28,7 +28,10 @@ void DeckListStatisticsAnalyzer::analyze()
|
||||||
}
|
}
|
||||||
|
|
||||||
const int amount = node->getNumber();
|
const int amount = node->getNumber();
|
||||||
QStringList copiesOfName = QStringList(amount).fill(info->getName());
|
QStringList copiesOfName;
|
||||||
|
for (int i = 0; i < amount; i++) {
|
||||||
|
copiesOfName.append(node->getName());
|
||||||
|
}
|
||||||
|
|
||||||
// Convert once
|
// Convert once
|
||||||
const int cmc = info->getCmc().toInt();
|
const int cmc = info->getCmc().toInt();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue