update Gmap for squares surrounding exclude centre
| 437 | #ifdef USE_TILE |
| 438 | // update Gmap for squares surrounding exclude centre |
| 439 | static void _tile_exclude_gmap_update(const coord_def &p) |
| 440 | { |
| 441 | for (int x = -8; x <= 8; x++) |
| 442 | for (int y = -8; y <= 8; y++) |
| 443 | { |
| 444 | const coord_def pc(p.x + x, p.y + y); |
| 445 | tiles.update_minimap(pc); |
| 446 | } |
| 447 | } |
| 448 | #endif |
| 449 | |
| 450 | static void _exclude_update() |
no test coverage detected