* rct2: 0x00693B58 */
| 389 | * rct2: 0x00693B58 |
| 390 | */ |
| 391 | void Peep::UpdateCurrentAnimationType() |
| 392 | { |
| 393 | PeepAnimationType newAnimationType = GetAnimationType(); |
| 394 | if (AnimationType == newAnimationType) |
| 395 | { |
| 396 | return; |
| 397 | } |
| 398 | |
| 399 | AnimationType = newAnimationType; |
| 400 | |
| 401 | invalidate(); |
| 402 | UpdateSpriteBoundingBox(); |
| 403 | invalidate(); |
| 404 | } |
| 405 | |
| 406 | void Peep::UpdateSpriteBoundingBox() |
| 407 | { |
no test coverage detected