| 115 | } |
| 116 | |
| 117 | bool CLevel::net_start_client6() |
| 118 | { |
| 119 | if (connected_to_server) |
| 120 | { |
| 121 | // Sync |
| 122 | if (g_hud) |
| 123 | g_hud->OnConnected(); |
| 124 | |
| 125 | if (!psActorFlags.test(AF_KEYPRESS_ON_START)) |
| 126 | pApp->LoadForceFinish(); |
| 127 | g_pGamePersistent->LoadTitle("st_client_synchronising"); |
| 128 | Device.PreCache(60, true, true); |
| 129 | net_start_result_total = TRUE; |
| 130 | } |
| 131 | else |
| 132 | { |
| 133 | net_start_result_total = FALSE; |
| 134 | } |
| 135 | |
| 136 | pApp->LoadEnd(); |
| 137 | return true; |
| 138 | } |
nothing calls this directly
no test coverage detected