* Updates the minimap animation. */
| 386 | * Updates the minimap animation. |
| 387 | */ |
| 388 | void MiniMapView::animate() |
| 389 | { |
| 390 | _frame++; |
| 391 | if(_frame > MAX_FRAME) |
| 392 | { |
| 393 | _frame = 0; |
| 394 | } |
| 395 | _redraw = true; |
| 396 | } |
| 397 | |
| 398 | void MiniMapView::stopScrolling(Action *action) |
| 399 | { |
nothing calls this directly
no outgoing calls
no test coverage detected