| 223 | } |
| 224 | |
| 225 | static bool ExplosionSmallTick(EffectVehicle *v) |
| 226 | { |
| 227 | v->progress++; |
| 228 | if ((v->progress & 3) == 0) { |
| 229 | if (!IncrementSprite(v, SPR_EXPLOSION_SMALL_B)) { |
| 230 | delete v; |
| 231 | return false; |
| 232 | } |
| 233 | v->UpdatePositionAndViewport(); |
| 234 | } |
| 235 | |
| 236 | return true; |
| 237 | } |
| 238 | |
| 239 | static void BulldozerInit(EffectVehicle *v) |
| 240 | { |
nothing calls this directly
no test coverage detected