Fix for issue 1400 (YASim slats always give full stall enhancement)
Surface::stallFunc() now scales _slatAlpha by _slatPos when adjusting stallAlpha.
This commit is contained in:
parent
527eb9d444
commit
8a9ce0ccf7
1 changed files with 1 additions and 1 deletions
|
@ -281,7 +281,7 @@ float Surface::stallFunc(float* v)
|
|||
return 1;
|
||||
|
||||
if(i == 0)
|
||||
stallAlpha += _slatAlpha;
|
||||
stallAlpha += _slatPos * _slatAlpha;
|
||||
|
||||
// Beyond the stall
|
||||
if(alpha > stallAlpha+_widths[i])
|
||||
|
|
Loading…
Add table
Reference in a new issue