()
| 2252 | } |
| 2253 | |
| 2254 | private static void Menu_SaveGame_f() { |
| 2255 | if (Globals.server_state == ServerStates.SS_DEAD) |
| 2256 | return; // not playing a game |
| 2257 | |
| 2258 | SaveGame_MenuInit(); |
| 2259 | PushMenu((List<String> args) -> SaveGame_MenuDraw(), new keyfunc_t() { |
| 2260 | public String execute(int key) { |
| 2261 | return SaveGame_MenuKey(key); |
| 2262 | } |
| 2263 | }); |
| 2264 | Create_Savestrings(); |
| 2265 | } |
| 2266 | |
| 2267 | /* |
| 2268 | * ============================================================================= |
no test coverage detected