1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-11 20:29:36 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);