mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-08 12:40:50 +00:00
Value stored but never read
This commit is contained in:
parent
4004f7be65
commit
74649cf87b
@ -456,7 +456,7 @@ double algo_spline_get_y(double x0, double y0, double x1, double y1,
|
|||||||
x = x0;
|
x = x0;
|
||||||
y = y0;
|
y = y0;
|
||||||
|
|
||||||
out_x = old_x = x0;
|
old_x = x0;
|
||||||
out_y = old_y = y0;
|
out_y = old_y = y0;
|
||||||
|
|
||||||
x += .5;
|
x += .5;
|
||||||
@ -533,8 +533,6 @@ double algo_spline_get_tan(double x0, double y0, double x1, double y1,
|
|||||||
x = x0;
|
x = x0;
|
||||||
y = y0;
|
y = y0;
|
||||||
|
|
||||||
out_x = x0;
|
|
||||||
|
|
||||||
old_x = x0;
|
old_x = x0;
|
||||||
old_dx = dx;
|
old_dx = dx;
|
||||||
old_dy = dy;
|
old_dy = dy;
|
||||||
|
Loading…
Reference in New Issue
Block a user