mirror of
https://github.com/cc65/cc65.git
synced 2024-12-28 06:30:16 +00:00
Removed a "cc65_" prefix.
This change is needed because of commit 3d8c3a4948
.
This commit is contained in:
parent
df80d071e8
commit
60e40c854c
@ -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…
Reference in New Issue
Block a user