* Handle blitting of Geoscape and Dogfights. */
| 441 | * Handle blitting of Geoscape and Dogfights. |
| 442 | */ |
| 443 | void GeoscapeState::blit() |
| 444 | { |
| 445 | State::blit(); |
| 446 | for(std::list<DogfightState*>::iterator it = _dogfights.begin(); it != _dogfights.end(); ++it) |
| 447 | { |
| 448 | (*it)->blit(); |
| 449 | } |
| 450 | } |
| 451 | /** |
| 452 | * Handle key shortcuts. |
| 453 | * @param action Pointer to an action. |