| 152 | } |
| 153 | |
| 154 | F32 leBlendToCol(F32 f1, F32 f2, F32 f3) |
| 155 | { |
| 156 | if (f1 > f2) |
| 157 | { |
| 158 | f1 -= f3; |
| 159 | return (f1 < f2) ? f2 : f1; |
| 160 | } |
| 161 | else if (f1 < f2) |
| 162 | { |
| 163 | f1 += f3; |
| 164 | return (f1 > f2) ? f2 : f1; |
| 165 | } |
| 166 | else |
| 167 | { |
| 168 | return f1; |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | void zLightEffectCauldron(_zLight* zlight, F32 seconds) |
| 173 | { |
no outgoing calls
no test coverage detected