| 535 | |
| 536 | |
| 537 | void cMap::SetScale(unsigned int a_Scale) |
| 538 | { |
| 539 | if (m_Scale == a_Scale) |
| 540 | { |
| 541 | return; |
| 542 | } |
| 543 | |
| 544 | m_Scale = a_Scale; |
| 545 | |
| 546 | for (cMapClientList::iterator it = m_Clients.begin(); it != m_Clients.end(); ++it) |
| 547 | { |
| 548 | it->m_SendInfo = true; |
| 549 | } |
| 550 | } |
| 551 | |
| 552 | |
| 553 |
no test coverage detected