We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The line here
aces-core/lib/Lib.Academy.OutputTransform.ctl
Line 873 in 89a10fd
does not need the min() call as the max() is more limiting.
Kevin
The text was updated successfully, but these errors were encountered:
i.e. something more like float gain = (limitJmax - thr) / max(0.0001f, limitJmax - J);
float gain = (limitJmax - thr) / max(0.0001f, limitJmax - J);
Sorry, something went wrong.
remove unnecessary min() call as the enclosing max() is more limiting
26abf4d
fix issue ampas#157
No branches or pull requests
The line here
aces-core/lib/Lib.Academy.OutputTransform.ctl
Line 873 in 89a10fd
does not need the min() call as the max() is more limiting.
Kevin
The text was updated successfully, but these errors were encountered: