| 689 | } |
| 690 | |
| 691 | void TransferScreen::render() |
| 692 | { |
| 693 | TransactionScreen::render(); |
| 694 | |
| 695 | // Highlight second selected base |
| 696 | auto viewBase = currentSecondView->getData<Base>(); |
| 697 | if (second_base == viewBase) |
| 698 | { |
| 699 | Vec2<int> pos = currentSecondView->getLocationOnScreen() - 2; |
| 700 | Vec2<int> size = currentSecondView->Size + 4; |
| 701 | fw().renderer->drawRect(pos, size, COLOUR_RED); |
| 702 | } |
| 703 | } |
| 704 | |
| 705 | }; // namespace OpenApoc |
nothing calls this directly
no test coverage detected