Typo, add missing "else"

This commit is contained in:
Tres Finocchiaro
2014-11-07 12:39:00 -08:00
parent 2a6d6c2a7e
commit 4e5d4b95a0

View File

@@ -103,6 +103,7 @@ inline float linearInterpolate( float v0, float v1, float x )
#else
return fma( x, v1-v0, v0 );
#endif
#else
return x * (v1-v0) + v0;
#endif
}