1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-08 06:25:17 +00:00

Removed a "cc65_" prefix.

This change is needed because of commit 3d8c3a4948.
This commit is contained in:
greg-king5
2019-03-30 11:06:09 -04:00
committed by GitHub
parent df80d071e8
commit 60e40c854c

View File

@@ -151,7 +151,7 @@ static void DoDiagram (void)
/* Calculate the next points */
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 */
tgi_lineto (XOrigin + X, YOrigin + Y);