fix build failure

This commit is contained in:
RickyRister 2026-01-03 02:23:54 -08:00
parent 0fc41078d9
commit b75cd22649

View file

@ -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();