| 134 | } |
| 135 | |
| 136 | BOOL mainmenu_init_menu(int type) |
| 137 | { |
| 138 | BOOL success; |
| 139 | |
| 140 | if (type == SELHERO_PREVIOUS) |
| 141 | return TRUE; |
| 142 | |
| 143 | music_stop(); |
| 144 | |
| 145 | success = StartGame(type != SELHERO_CONTINUE, type != SELHERO_CONNECT); |
| 146 | if (success) |
| 147 | mainmenu_refresh_music(); |
| 148 | |
| 149 | return success; |
| 150 | } |
| 151 | |
| 152 | BOOL mainmenu_multi_player() |
| 153 | { |
no test coverage detected