Merge pull request #2829 from wavexx/la10_15_readjust
Re-adjust LA10->15 conversion
This commit is contained in:
commit
3093c8c7f6
@ -38,7 +38,7 @@ void la10c_mode_change(LA10C_MODE mode)
|
|||||||
// Approximate a LA10 value to a LA15 equivalent.
|
// Approximate a LA10 value to a LA15 equivalent.
|
||||||
static float la10c_convert(float k)
|
static float la10c_convert(float k)
|
||||||
{
|
{
|
||||||
float new_K = k * 0.004 - 0.05;
|
float new_K = k * 0.002 - 0.01;
|
||||||
return new_K < 0? 0:
|
return new_K < 0? 0:
|
||||||
new_K > (LA_K_MAX - FLT_EPSILON)? (LA_K_MAX - FLT_EPSILON):
|
new_K > (LA_K_MAX - FLT_EPSILON)? (LA_K_MAX - FLT_EPSILON):
|
||||||
new_K;
|
new_K;
|
||||||
|
Loading…
Reference in New Issue
Block a user