| 50 | } |
| 51 | |
| 52 | bool InitMenu(_selhero_selections type) |
| 53 | { |
| 54 | bool success; |
| 55 | |
| 56 | if (type == SELHERO_PREVIOUS) |
| 57 | return true; |
| 58 | |
| 59 | success = StartGame(type != SELHERO_CONTINUE, type != SELHERO_CONNECT); |
| 60 | if (success) |
| 61 | RefreshMusic(); |
| 62 | |
| 63 | return success; |
| 64 | } |
| 65 | |
| 66 | bool InitSinglePlayerMenu() |
| 67 | { |
no test coverage detected