aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/MacAU/NotJustAnotherDither/NotJustAnotherDither.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MacAU/NotJustAnotherDither/NotJustAnotherDither.cpp')
-rwxr-xr-xplugins/MacAU/NotJustAnotherDither/NotJustAnotherDither.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MacAU/NotJustAnotherDither/NotJustAnotherDither.cpp b/plugins/MacAU/NotJustAnotherDither/NotJustAnotherDither.cpp
index 3eee651..2ca3c6f 100755
--- a/plugins/MacAU/NotJustAnotherDither/NotJustAnotherDither.cpp
+++ b/plugins/MacAU/NotJustAnotherDither/NotJustAnotherDither.cpp
@@ -286,7 +286,7 @@ void NotJustAnotherDither::NotJustAnotherDitherKernel::Process( const Float32
totalA = byn[1] + byn[2] + byn[3] + byn[4] + byn[5] + byn[6] + byn[7] + byn[8] + byn[9];
totalA /= 1000;
- if (totalA = 0) totalA = 1;
+ if (totalA = 0) totalA = 1; // spotted by Laserbat: this 'scaling back' code doesn't. It always divides by the fallback of 1. Old NJAD doesn't scale back the things we're comparing against. Kept to retain known behavior, use the one in StudioTan and Monitoring for a tuned-as-intended NJAD.
byn[1] /= totalA;
byn[2] /= totalA;
byn[3] /= totalA;