| 2607 | |
| 2608 | |
| 2609 | int cChunkMap::GetNumChunks(void) |
| 2610 | { |
| 2611 | cCSLock Lock(m_CSLayers); |
| 2612 | int NumChunks = 0; |
| 2613 | for (cChunkLayerList::iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr) |
| 2614 | { |
| 2615 | NumChunks += (*itr)->GetNumChunksLoaded(); |
| 2616 | } |
| 2617 | return NumChunks; |
| 2618 | } |
| 2619 | |
| 2620 | |
| 2621 |
nothing calls this directly
no test coverage detected