| 2414 | return (choices[pick]); |
| 2415 | } |
| 2416 | int GetRandomSmallExplosion() { |
| 2417 | int choices[] = {SMALL_EXPLOSION_INDEX, SMALL_EXPLOSION_INDEX2}; |
| 2418 | int pick = ps_rand() % 2; |
| 2419 | return (choices[pick]); |
| 2420 | } |
| 2421 | // TODO: MTS: only found in this file. |
| 2422 | int GetRandomBillowingExplosion() { |
| 2423 | int choices[] = {BILLOWING_INDEX, MED_EXPLOSION_INDEX2}; |
no test coverage detected