this functions performs the end mission code */
| 1588 | /* this functions performs the end mission code |
| 1589 | */ |
| 1590 | void DoEndMission() { |
| 1591 | if (Game_mode & GM_MULTI) // If multiplayer, just loop |
| 1592 | { |
| 1593 | if (Dedicated_server) |
| 1594 | PrintDedicatedMessage(TXT_DS_MISSIONDONE); |
| 1595 | SetCurrentLevel(1); |
| 1596 | return; |
| 1597 | } |
| 1598 | } |
| 1599 | // Shows some text on a background, useful for telling the player what is going on |
| 1600 | // ie "Loading level...", "Receiving data...", etc |
| 1601 | void ShowProgressScreen(const char *str, const char *str2, bool flip) { |
no test coverage detected