Merge pull request #2610 from wavexx/la15_la10_tune

Increase the LA10->15 response
This commit is contained in:
DRracer 2020-04-16 16:12:05 +02:00 committed by GitHub
commit 60466c0993
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,7 @@ void la10c_mode_change(LA10C_MODE mode)
// Approximate a LA10 value to a LA15 equivalent.
static float la10c_convert(float k)
{
float new_K = k * 0.004 - 0.06;
float new_K = k * 0.004 - 0.05;
return (new_K < 0? 0: new_K);
}