Removed a "cc65_" prefix.
This change is needed because of commit 3d8c3a4948.
This commit is contained in:
@@ -151,7 +151,7 @@ static void DoDiagram (void)
|
|||||||
|
|
||||||
/* Calculate the next points */
|
/* Calculate the next points */
|
||||||
X = (int) (((long) (MaxX - 19) * I) / 360);
|
X = (int) (((long) (MaxX - 19) * I) / 360);
|
||||||
Y = (int) (((long) Amp * -cc65_sin (I)) / 256);
|
Y = (int) (((long) Amp * -sin (I)) / 256);
|
||||||
|
|
||||||
/* Draw the line */
|
/* Draw the line */
|
||||||
tgi_lineto (XOrigin + X, YOrigin + Y);
|
tgi_lineto (XOrigin + X, YOrigin + Y);
|
||||||
|
|||||||
Reference in New Issue
Block a user