world buttons
[fishladder.git] / vg / vg_m.h
index a0c01077048b0a5cd599f206e428b474ca3af1d9..3b7feb41df774ed3676758df9b01d1720df78589 100644 (file)
--- a/vg/vg_m.h
+++ b/vg/vg_m.h
@@ -227,7 +227,7 @@ static inline void v3_normalize( v3f a )
        v3_muls( a, 1.f / v3_length( a ), a );
 }
 
-static inline float csr_lerpf( float a, float b, float t )
+static inline float vg_lerpf( float a, float b, float t )
 {
        return a + t*(b-a);
 }