Correct missing break

This commit is contained in:
Campbell Barton 2015-04-30 08:18:32 +10:00
parent b640700597
commit 0ecce09288
1 changed files with 1 additions and 0 deletions

View File

@ -135,6 +135,7 @@ float *BlurBaseOperation::make_dist_fac_inverse(float rad, int size, int falloff
break;
case PROP_INVSQUARE:
val = val * (2.0f - val);
break;
case PROP_LIN:
/* fall-through */
#ifndef NDEBUG