| 270 | } |
| 271 | |
| 272 | void map_change_spot_ser(u16 id, LPCSTR spot_type, BOOL v) |
| 273 | { |
| 274 | CMapLocation* ml = Level().MapManager().GetMapLocation(spot_type, id); |
| 275 | if (!ml) |
| 276 | return; |
| 277 | ml->SetSerializable(!!v); |
| 278 | } |
| 279 | |
| 280 | void prefetch_many_sounds( LPCSTR prefix ) { |
| 281 | Level().PrefetchManySoundsLater( prefix ); |
nothing calls this directly
no test coverage detected