Closed dontatmee closed 4 years ago
Line 565 is incorrect.
int H = (int) round(sqrt((fix32)(pow(abs_val_x, 2) * pow(abs_val_y, 2))));
Should be changed to
int H = (int) round(sqrt((fix32)(pow(abs_val_x, 2) + pow(abs_val_y, 2))));
Thank you for reporting. It is fixed and will be applied on the next Gtuner IV release.
Line 565 is incorrect.
Should be changed to