| 178 | } |
| 179 | |
| 180 | static bool ExplosionLargeTick(EffectVehicle *v) |
| 181 | { |
| 182 | v->progress++; |
| 183 | if ((v->progress & 3) == 0) { |
| 184 | if (!IncrementSprite(v, SPR_EXPLOSION_LARGE_F)) { |
| 185 | delete v; |
| 186 | return false; |
| 187 | } |
| 188 | v->UpdatePositionAndViewport(); |
| 189 | } |
| 190 | |
| 191 | return true; |
| 192 | } |
| 193 | |
| 194 | static void BreakdownSmokeInit(EffectVehicle *v) |
| 195 | { |
nothing calls this directly
no test coverage detected