| 2129 | } |
| 2130 | |
| 2131 | RString name = GetSaveDirectory() + RString("autosave.fps"); |
| 2132 | GWorld->SaveBin(name, IDS_AUTOSAVE_GAME); |
| 2133 | return NOTHING; |
| 2134 | } |
| 2135 | |
| 2136 | GameValue ShowMap(const GameState* state, GameValuePar oper1) |
| 2137 | { |
| 2138 | DisplayMap* map = dynamic_cast<DisplayMap*>(GWorld->Map()); |
| 2139 | if (map) |
| 2140 | { |
| 2141 | map->ShowMap(oper1); |
| 2142 | } |
no test coverage detected