Removed a "cc65_" prefix.
This change is needed because of commit 3d8c3a4948
.
This commit is contained in:
parent
df80d071e8
commit
60e40c854c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue