mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-09 09:33:57 -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();
|
||||
QStringList copiesOfName = QStringList(amount).fill(info->getName());
|
||||
QStringList copiesOfName;
|
||||
for (int i = 0; i < amount; i++) {
|
||||
copiesOfName.append(node->getName());
|
||||
}
|
||||
|
||||
// Convert once
|
||||
const int cmc = info->getCmc().toInt();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue