fix default values of interpolation
This commit is contained in:
parent
e7a4845f92
commit
fa66c95c07
|
@ -423,7 +423,8 @@ cubic_interp(
|
|||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
/* fallback value */
|
||||
return (a+b)*0.5;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -187,8 +187,8 @@ cubic_interp(
|
|||
return b;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
/* fallback value */
|
||||
return (a+b)*0.5;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue