| 482 | } |
| 483 | |
| 484 | void CardManager::GetCardChoicesForAuxSlot(std::vector<SS_CARDTYPE>& choicesList) |
| 485 | { |
| 486 | // Availability & order of cards in drop-down menu: |
| 487 | const SS_CARDTYPE cards[] = |
| 488 | { |
| 489 | CT_Empty, |
| 490 | CT_80Col, |
| 491 | CT_Extended80Col, |
| 492 | CT_RamWorksIII |
| 493 | }; |
| 494 | |
| 495 | choicesList.clear(); |
| 496 | |
| 497 | choicesList.reserve(std::size(cards)); |
| 498 | for (UINT i = 0; i < std::size(cards); i++) |
| 499 | { |
| 500 | const SS_CARDTYPE thisCard = cards[i]; |
| 501 | choicesList.push_back(thisCard); |
| 502 | } |
| 503 | } |