J2Kbr / GtunerIV

Gtuner IV - Titan Two's software bug report.
http://www.consoletuner.com
25 stars 4 forks source link

titanone header, issue with the Stickize function. #360

Closed dontatmee closed 4 years ago

dontatmee commented 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))));
J2Kbr commented 4 years ago

Thank you for reporting. It is fixed and will be applied on the next Gtuner IV release.